Modul:Check for unknown parameters: Perbezaan antara semakan

Kandungan dihapus Kandungan ditambah
kemaskini
Danialrosli (bincang | sumb.)
Tiada ringkasan suntingan
Baris 35:
end
 
function p.check _check(frameargs, pargs)
if type(args) ~= "table" or type(pargs) ~= "table" then
local args = frame.args
-- TODO: error handling
local pargs = frame:getParent().args
return
end
 
local ignoreblank = isnotempty(args['ignoreblank'])
local showblankpos = isnotempty(args['showblankpositional'])
Baris 86 ⟶ 89:
-- add results to the output tables
if #values > 0 then
if framemw.getCurrentFrame():preprocess( "{{REVISIONID}}" ) == "" then
unknown = preview
end
Baris 102 ⟶ 105:
 
return table.concat(res)
end
 
function p.check(frame)
local args = frame.args
local pargs = frame:getParent().args
return p._check(args, pargs)
end