Content deleted Content added
BrandonXLF (talk | contribs) No edit summary |
BrandonXLF (talk | contribs) No edit summary |
||
Line 5:
local tArgs = {}
local pFirst = require('Module:Yesno')(fArgs._pf)
local template = fArgs['_t']
if not template then
return require('Module:Error').error({'Error: no template name given.'})
end
if pFirst then
fArgs, pArgs = pArgs, fArgs
end
for k,v in pairs(fArgs) do
Line 17 ⟶ 20:
end
end
return frame:expandTemplate{title = template, args = tArgs}
end
return p
|