diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2011-12-03 13:29:22 +0100 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2011-12-03 13:29:22 +0100 |
commit | ca32f08966f1b51fcb19460f0996bb0c4048e6fe (patch) | |
tree | ec04cc15b867bc21eedca904cea9af0254531a11 /includes/parser/DateFormatter.php | |
parent | a22fbfc60f36f5f7ee10d5ae6fe347340c2ee67c (diff) |
Update to MediaWiki 1.18.0
* also update ArchLinux skin to chagnes in MonoBook
* Use only css to hide our menu bar when printing
Diffstat (limited to 'includes/parser/DateFormatter.php')
-rw-r--r-- | includes/parser/DateFormatter.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/includes/parser/DateFormatter.php b/includes/parser/DateFormatter.php index cf510171..6559e886 100644 --- a/includes/parser/DateFormatter.php +++ b/includes/parser/DateFormatter.php @@ -182,8 +182,8 @@ class DateFormatter $bits = array(); $key = $this->keys[$this->mSource]; for ( $p=0; $p < strlen($key); $p++ ) { - if ( $key{$p} != ' ' ) { - $bits[$key{$p}] = $matches[$p+1]; + if ( $key[$p] != ' ' ) { + $bits[$key[$p]] = $matches[$p+1]; } } @@ -224,7 +224,7 @@ class DateFormatter } for ( $p=0; $p < strlen( $format ); $p++ ) { - $char = $format{$p}; + $char = $format[$p]; switch ( $char ) { case 'd': # ISO day of month $text .= $bits['d']; @@ -327,7 +327,7 @@ class DateFormatter * @todo document */ function makeNormalYear( $iso ) { - if ( $iso{0} == '-' ) { + if ( $iso[0] == '-' ) { $text = (intval( substr( $iso, 1 ) ) + 1) . ' BC'; } else { $text = intval( $iso ); |