Module:GetBirthDate: Revision history

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.

19 March 2025

  • curprev 00:0900:09, 19 March 2025 PeaceDeadC talk contribs 1,609 bytes +1,609 Created page with "local p = {} local PBD = require('Module:PBD') local function splitDate(date) local day, month, year = nil, nil, nil if date then day, month, year = string.match(date, '(%d+)%s+(%a+)%s+(%d+)') if not year then month, day = string.match(date, '(%a+)%s+(%d+)') if not day then day, month = string.match(date, '(%d+)%s+(%a+)') end end if not month a..."