https://bugzilla.wikimedia.org/show_bug.cgi?id=48907

--- Comment #2 from Paul Robinson <[email protected]> ---
Confirmed, this is not a Wikimedia bug, this is a bug in php:

<?php
 $h = mktime(0, 0, 0, 1, 1, 1600);
 $d = date("F dS, Y", $h) ;
 $w= date("l", $h) ;
 Echo "$d is on a $w<br>";
 $h = mktime(0, 0, 0, 1, 1, 1599);
 $d = date("F dS, Y", $h) ;
 $w= date("l", $h) ;
 Echo "$d is on a $w<br>";
 ?>

Results:

January 01st, 1600 is on a Saturday
January 01st, 1599 is on a Saturday

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to