Related changes
Jump to navigation
Jump to search
Enter a page name to see changes on pages linked to or from that page. (To see members of a category, enter Category:Name of category). Changes to pages on your watchlist are in bold.
List of abbreviations:
- N
- This edit created a new page (also see list of new pages)
- m
- This is a minor edit
- b
- This edit was performed by a bot
- (±123)
- The page size changed by this number of bytes
10 September 2026
| N 09:57 | Module:DateTime diffhist +497 0x99 talk contribs (Created page with "local getArgs = require('Module:Arguments').getArgs local p = {} function p.format(frame) local args = getArgs(frame) local dt = args[1] or "" if dt == "" then return "" end local fmt = "Y-m-d" if string.find(dt, "T") or string.find(dt, ":") then fmt ="Y-m-d H:i:s" end local success, result = pcall(function() return mw.getContentLanguage():formatDate(fmt, dt) end) if success then return result end r...") | ||||