Index: trunk/phase3/includes/parser/Parser.php |
— | — | @@ -3706,6 +3706,12 @@ |
3707 | 3707 | $tz = date( 'T', $unixts ); # might vary on DST changeover! |
3708 | 3708 | putenv( 'TZ='.$oldtz ); |
3709 | 3709 | } |
| 3710 | + |
| 3711 | + $ctz = wfMsgForContent('timezone'); |
| 3712 | + if (!wfEmptyMsg('timezone', $ctz)) { |
| 3713 | + $tz = $ctz; |
| 3714 | + } |
| 3715 | + |
3710 | 3716 | $d = $wgContLang->timeanddate( $ts, false, false ) . " ($tz)"; |
3711 | 3717 | |
3712 | 3718 | # Variable replacement |