Jump to content

Main public logs

Combined display of all available logs of Shell Wikipedia. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 08:17, 27 January 2025 John talk contribs created page Module:Check for unknown parameters (Created page with "-- Module:Check for unknown parameters -- This module checks for unknown parameters passed to a template or module. local p = {} function p.check(frame) local args = frame:getParent().args local known = {} for _, v in ipairs(frame.args) do known[v] = true end local unknowns = {} for k, _ in pairs(args) do if not known[k] then table.insert(unknowns, k) end end if #unknowns > 0 then local message...")