Modul:Check for unknown parameters: Unterschied zwischen den Versionen

keine Bearbeitungszusammenfassung
(test)
Keine Bearbeitungszusammenfassung
Zeile 26: Zeile 26:
-- loop over the parent args, and make sure they are on the list
-- loop over the parent args, and make sure they are on the list
for k,v in pairs(pargs) do
for k,v in pairs(pargs) do
-- mw.ustring.gsub(unknown, '_VALUE_', tostring(k))
if (knownargs[k] == nil) then
if (knownargs[k] == nil) then
table.insert(res, k)
local r = mw.ustring.gsub(unknown, '_VALUE_', k)
table.insert(res, r)
end
end
end
end
Anonymer Benutzer