Index: trunk/phase3/languages/LanguageFy.php |
— | — | @@ -975,8 +975,8 @@ |
976 | 976 | $datePreference = $this->dateFormat( $format ); |
977 | 977 | |
978 | 978 | $month = $this->getMonthAbbreviation( substr( $ts, 4, 2 ) ); |
979 | | - $day = $this->formatNum( 0 + substr( $ts, 6, 2 ) ); |
980 | | - $year = $this->formatNum( substr( $ts, 0, 4 ), true ); |
| 979 | + $day = 0 + substr( $ts, 6, 2 ); |
| 980 | + $year = substr( $ts, 0, 4 ); |
981 | 981 | |
982 | 982 | switch( $datePreference ) { |
983 | 983 | case MW_DATE_DMY: return "$day $month $year"; |
— | — | @@ -1014,7 +1014,7 @@ |
1015 | 1015 | if ( $datePreference == MW_DATE_ISO ) { |
1016 | 1016 | $t .= $sep . substr( $ts, 12, 2 ); |
1017 | 1017 | } |
1018 | | - return $this->formatNum( $t ); |
| 1018 | + return $t; |
1019 | 1019 | } |
1020 | 1020 | |
1021 | 1021 | function getMessage( $key ) { |