Changes

Module:Category handler/shared

79 bytes removed, 06:13, 7 July 2014
make this output either true or false, and switch indentation to tabs
local function matchesBlacklist(page, blacklist)
if type(page) ~= 'string' then return nil end for i, pattern in ipairs(blacklist) do local match = mw.ustring.match(page, pattern) if match then return matchtrue end end return false
end
Anonymous user