View source for Module:Infobox rugby biography cleaner
MyWikiBiz, Author Your Legacy — Monday June 23, 2025
Jump to navigationJump to searchYou do not have permission to edit this page, for the following reasons:
You can view and copy the source of this page.
local p = {}
local args = {}
local function isnotblank(s)
return s and s:match( '^%s*(.-)%s*$' ) ~= ''
end
local function argrename(n1, n2)
if args[n1] or args[n2] then
if( args[n1] and args[n1] ~= '' ) and ( args[n2] and args[n2] ~= '' ) then
args[n2] = (args[n2] or '') .. '\n' .. (args[n1] or '')
else
args[n2] = (args[n2] or '') .. (args[n1] or '')
end
args[n1] = ''
end
end
local function addparam(s, f)
000
1:0
Template used on this page:
Return to Module:Infobox rugby biography cleaner.