Content deleted Content added
BrokenSegue (talk | contribs) refactor |
BrokenSegue (talk | contribs) handle less precise dates |
||
Line 213:
local dateString = yt_year .. "|"
-- construct YYYY|mm|dd date string
if yt_month and yt_month ~= 0 then
dateString = dateString .. yt_month .. "|"
if yt_day and yt_day ~= 0 then
dateString = dateString .. yt_day
end
|