Jump to content

Module:Title blacklist and Module:Title blacklist/sandbox: Difference between pages

(Difference between pages)
Page 1
Page 2
Content deleted Content added
m Protected "Module:Title blacklist": High-risk template or module ([Edit=Require administrator access] (indefinite) [Move=Require administrator access] (indefinite))
 
No edit summary
 
Line 2: Line 2:


local p = {}
local p = {}
p.main = function(frame)
p._main = function(args)
local args = frame.args
local action = args['action']
local action = args['action']
local pagename = args['pagename']
local pagename = args['pagename']
Line 14: Line 13:
end
end
else return '' end
else return '' end
end

p.main = function(frame)
local args = frame.args
return p._main(args)
end
end