Difference between revisions of "Talk:Unix2DateTime"

From Second Life Wiki
Jump to navigation Jump to search
(→‎Leap Years: new section)
Line 9: Line 9:


Unix time is usable from 1970 to 2037 ... so why does this script's leap year test include handling for centuries that are not multiples of 400 years?
Unix time is usable from 1970 to 2037 ... so why does this script's leap year test include handling for centuries that are not multiples of 400 years?
A touch of overkill?
A touch of overkill? [[User:Omei Qunhua|Omei Qunhua]] 16:09, 11 January 2013 (PST)

Revision as of 17:09, 11 January 2013

Script didn't compile due to this line:
days = DaysPerMonth(mt++);

Changed that line to:
days = DaysPerMonth(year,mt++);
--Huney Jewell 07:20, 20 September 2007 (PDT)

Leap Years

Unix time is usable from 1970 to 2037 ... so why does this script's leap year test include handling for centuries that are not multiples of 400 years? A touch of overkill? Omei Qunhua 16:09, 11 January 2013 (PST)