r93522 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r93521‎ | r93522 | r93523 >
Date:10:20, 30 July 2011
Author:maxsem
Status:ok
Tags:
Comment:
MFT r93520 to 1.17: Installer checked for magic_quotes_runtime instead of register_globals
Modified paths:
  • /branches/REL1_17/phase3/RELEASE-NOTES (modified) (history)
  • /branches/REL1_17/phase3/includes/installer/Installer.php (modified) (history)

Diff [purge]

Index: branches/REL1_17/phase3/includes/installer/Installer.php
@@ -643,7 +643,7 @@
644644 * Environment check for register_globals.
645645 */
646646 protected function envCheckRegisterGlobals() {
647 - if( wfIniGetBool( "magic_quotes_runtime" ) ) {
 647+ if( wfIniGetBool( 'register_globals' ) ) {
648648 $this->showMessage( 'config-register-globals' );
649649 }
650650 }
Index: branches/REL1_17/phase3/RELEASE-NOTES
@@ -48,7 +48,8 @@
4949 multiple dots, was broken by the fix for bug 28840.
5050 * In the maintenance script purgeList.php, fixed a fatal error when a page
5151 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.
5354
5455 === Changes since 1.17.0rc1 ===
5556

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r93520:facepalm: Installer checked for magic_quotes_runtime instead of register_glo...maxsem09:52, 30 July 2011

Status & tagging log