Index: branches/REL1_18/phase3/RELEASE-NOTES-1.18 |
— | — | @@ -420,6 +420,7 @@ |
421 | 421 | * (bug 28762) Resizing to specified height broken for very thin images |
422 | 422 | * (bug 29959) Installer fatal when cURL and allow_url_fopen is disabled and user |
423 | 423 | tries to subsribe to mediawiki-announce |
| 424 | +* Installer checked for magic_quotes_runtime instead of register_globals. |
424 | 425 | |
425 | 426 | === API changes in 1.18 === |
426 | 427 | * BREAKING CHANGE: action=watch now requires POST and token. |
Index: branches/REL1_18/phase3/includes/installer/Installer.php |
— | — | @@ -652,7 +652,7 @@ |
653 | 653 | * Environment check for register_globals. |
654 | 654 | */ |
655 | 655 | protected function envCheckRegisterGlobals() { |
656 | | - if( wfIniGetBool( "magic_quotes_runtime" ) ) { |
| 656 | + if( wfIniGetBool( 'register_globals' ) ) { |
657 | 657 | $this->showMessage( 'config-register-globals' ); |
658 | 658 | } |
659 | 659 | } |
Property changes on: branches/REL1_18/phase3 |
___________________________________________________________________ |
Modified: svn:mergeinfo |
660 | 660 | Merged /trunk/phase3:r93520 |