Index: trunk/phase3/RELEASE-NOTES-1.18 |
— | — | @@ -431,6 +431,7 @@ |
432 | 432 | tries to subsribe to mediawiki-announce. |
433 | 433 | * (bug 27427) mw.util.getParamValue shouldn't return value from hash even if |
434 | 434 | param is only present in hash. |
| 435 | +* Installer checked for magic_quotes_runtime instead of register_globals. |
435 | 436 | |
436 | 437 | === API changes in 1.18 === |
437 | 438 | * BREAKING CHANGE: action=watch now requires POST and token. |
Index: trunk/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 | } |