Changes
Jump to navigation
Jump to search
-- there's something hinky with how this adds dashes to perfectly-good free-standing years--[[ Date = Year
revert to older version of date-handling until we work out how to avoid those pesky dashes
end
if ( Date == nil ) then
if ( Date ~= nil ) then
local Month = args.month
local Day = args.day
if ( Day ~= nil ) then Date = Day .. " " .. Date end
end
]] -- so let's use the original version for now
Date = Year
if ( Date ~= nil ) then
local Month = args.month
if ( Month ~= nil ) then
Date = Month .. " " .. Date
local Day = args.day
if ( Day ~= nil ) then Date = Day .. " " .. Date end
end
end
end