Module:Error: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

3 August 2025

  • curprev 06:3606:36, 3 August 2025HyperNervie talk contribs 872 bytes +872 Created page with "local p = {} -- Call this in modules function p.error(message, tagname) -- message shouldn't be nil nor empty if message == nil then error("no message specified", 2) else message = mw.text.trim(tostring(message)) if message == "" then error("empty message", 2) end end if type(tagname) ~= "string" then tagname = "strong" else tagname = mw.ustring.lower(tagname) if tagname ~= "spa..."