From aa42646054b1e3616380a332d4420ee349e77c38 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Fri, 12 Feb 2010 01:12:52 +0000 Subject: [PATCH] (bug 17947) Use current date/time on Special:Preferences rather than Wikipedia day. It has been pointed out that an arbitrary date can be confusing for users on a different calendar system. Wikipedia day is cute, but not useful. --- includes/Preferences.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Preferences.php b/includes/Preferences.php index 2137f9d861..2971b9924b 100644 --- a/includes/Preferences.php +++ b/includes/Preferences.php @@ -1071,7 +1071,7 @@ class Preferences { } $idCnt = 0; - $epoch = '20010115161234'; # Wikipedia day + $epoch = wfTimestampNow(); foreach( $dateopts as $key ) { if( $key == 'default' ) { $formatted = wfMsgHtml( 'datedefault' ); -- 2.20.1