Index: trunk/phase3/languages/Language.php |
— | — | @@ -1900,7 +1900,7 @@ |
1901 | 1901 | } |
1902 | 1902 | |
1903 | 1903 | # Fill a MagicWord object with data from here |
1904 | | - function getMagic( &$mw ) { |
| 1904 | + function getMagic( $mw ) { |
1905 | 1905 | if ( !$this->mMagicHookDone ) { |
1906 | 1906 | $this->mMagicHookDone = true; |
1907 | 1907 | wfRunHooks( 'LanguageGetMagic', array( &$this->mMagicExtensions, $this->getCode() ) ); |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -418,6 +418,7 @@ |
419 | 419 | * (bug 15248) Non-breaking spaces and certain other Unicode space characters |
420 | 420 | are now normalized to ordinary spaces in titles; if your wiki has existing |
421 | 421 | titles with such characters, run cleanupTitles.php and/or cleanupImages.php |
| 422 | +* (bug 20296) Fixed an PHP warning in Language::getMagic() in PHP 5.3 |
422 | 423 | |
423 | 424 | == API changes in 1.16 == |
424 | 425 | |