Module:Birthagemonth: Revision history

From Catpedia

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.

7 June 2024

  • curprev 18:5818:58, 7 June 2024Ethar talk contribs 815 bytes +815 Created page with "local p = {} function p.formatDate(frame) local month = frame.args[1] or 1 local year = frame.args[2] or 1970 return mw.getContentLanguage():formatDate('F Y', string.format('%d-%d', year, month)) end function p.calculateAge(frame) local month = tonumber(frame.args[1]) or 1 local year = tonumber(frame.args[2]) or 1970 local currentMonth = tonumber(mw.getCurrentFrame():callParserFunction('#time', 'n')) local currentYear = tonumber(mw.getCurre..."