Index: branches/REL1_17/phase3/includes/installer/Installer.php |
— | — | @@ -643,7 +643,7 @@ |
644 | 644 | * Environment check for register_globals. |
645 | 645 | */ |
646 | 646 | protected function envCheckRegisterGlobals() { |
647 | | - if( wfIniGetBool( "magic_quotes_runtime" ) ) { |
| 647 | + if( wfIniGetBool( 'register_globals' ) ) { |
648 | 648 | $this->showMessage( 'config-register-globals' ); |
649 | 649 | } |
650 | 650 | } |
Index: branches/REL1_17/phase3/RELEASE-NOTES |
— | — | @@ -48,7 +48,8 @@ |
49 | 49 | multiple dots, was broken by the fix for bug 28840. |
50 | 50 | * In the maintenance script purgeList.php, fixed a fatal error when a page |
51 | 51 | title is given, instead of a URL. |
52 | | - * (bug 19514) Unordered list list-style-image should be IE6-compatible (8-bit) |
| 52 | +* (bug 19514) Unordered list list-style-image should be IE6-compatible (8-bit). |
| 53 | +* Installer checked for magic_quotes_runtime instead of register_globals. |
53 | 54 | |
54 | 55 | === Changes since 1.17.0rc1 === |
55 | 56 | |