Content deleted Content added
Cyborg Coder (talk | contribs) No edit summary |
Cyborg Coder (talk | contribs) No edit summary |
||
Line 40:
if date == "" then date = "No date" end
--local d, y = date:match("(%d+)%D+(%d+)")
local d = date:match("%D([1-3]%d)%D")
local y = date:match("(%d%d%d%d)")
local mnth = date:match("%a+") or ""
|