Module:Delink: Difference between revisions

From the Croc Wiki, the Croc encyclopedia
Jump to navigationJump to search
Content added Content deleted
(simplify bad title check)
(group the bad characters together)
Line 50: Line 50:
end
end
-- Check for bad characters.
-- Check for bad characters.
if mw.ustring.match(titlearea, "%[%]<>{}%%%c\n") then
if mw.ustring.match(titlearea, "[%[%]<>{}%%%c\n]") then
return s
return s
end
end