Index: branches/REL1_4/phase3/languages/LanguageIs.php |
— | — | @@ -1200,7 +1200,9 @@ |
1201 | 1201 | |
1202 | 1202 | function date( $ts, $adj = false ) { |
1203 | 1203 | if ( $adj ) { $ts = $this->userAdjust( $ts ); } # Adjust based on the timezone setting. |
1204 | | - $date = (0 + substr( $ts, 6, 2 )) . '. ' . $this->getMonthName( substr( $ts, 4, 2 ) ); |
| 1204 | + $date = (0 + substr( $ts, 6, 2 )) . '. ' . |
| 1205 | + $this->getMonthName( substr( $ts, 4, 2 ) ) . ' ' . |
| 1206 | + substr($ts, 0, 4); |
1205 | 1207 | return $date; |
1206 | 1208 | } |
1207 | 1209 | |