Index: branches/REL1_4/phase3/languages/LanguageIs.php |
— | — | @@ -1197,6 +1197,13 @@ |
1198 | 1198 | global $wgMagicWordsIs; |
1199 | 1199 | return $wgMagicWordsIs; |
1200 | 1200 | } |
| 1201 | + |
| 1202 | + function date( $ts, $adj = false ) { |
| 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 ) ); |
| 1205 | + return $date; |
| 1206 | + } |
| 1207 | + |
1201 | 1208 | } |
1202 | 1209 | |
1203 | 1210 | ?> |