r93521 MediaWiki - Code Review archive

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

Diff [purge]

Index: branches/REL1_18/phase3/RELEASE-NOTES-1.18
@@ -420,6 +420,7 @@
421421 * (bug 28762) Resizing to specified height broken for very thin images
422422 * (bug 29959) Installer fatal when cURL and allow_url_fopen is disabled and user
423423 tries to subsribe to mediawiki-announce
 424+* Installer checked for magic_quotes_runtime instead of register_globals.
424425
425426 === API changes in 1.18 ===
426427 * BREAKING CHANGE: action=watch now requires POST and token.
Index: branches/REL1_18/phase3/includes/installer/Installer.php
@@ -652,7 +652,7 @@
653653 * Environment check for register_globals.
654654 */
655655 protected function envCheckRegisterGlobals() {
656 - if( wfIniGetBool( "magic_quotes_runtime" ) ) {
 656+ if( wfIniGetBool( 'register_globals' ) ) {
657657 $this->showMessage( 'config-register-globals' );
658658 }
659659 }
Property changes on: branches/REL1_18/phase3
___________________________________________________________________
Modified: svn:mergeinfo
660660 Merged /trunk/phase3:r93520

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