r107029 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r107028‎ | r107029 | r107030 >
Date:01:07, 22 December 2011
Author:reedy
Status:ok
Tags:
Comment:
Followup r107027, require_once will work much better
Modified paths:
  • /trunk/extensions/CentralAuth/maintenance/migratePass0.php (modified) (history)
  • /trunk/extensions/CentralAuth/maintenance/migratePass1.php (modified) (history)
  • /trunk/extensions/CentralAuth/maintenance/migrateStewards.php (modified) (history)

Diff [purge]

Index: trunk/extensions/CentralAuth/maintenance/migratePass0.php
@@ -8,7 +8,7 @@
99 if ( $IP === false ) {
1010 $IP = dirname( __FILE__ ) . '/../../..';
1111 }
12 -requir_once( "$IP/maintenance/commandLine.inc" );
 12+require_once( "$IP/maintenance/commandLine.inc" );
1313
1414 /**
1515 * Copy user data for this wiki into the localuser table
Index: trunk/extensions/CentralAuth/maintenance/migratePass1.php
@@ -8,7 +8,7 @@
99 if ( $IP === false ) {
1010 $IP = dirname( __FILE__ ) . '/../../..';
1111 }
12 -requir_once( "$IP/maintenance/commandLine.inc" );
 12+require_once( "$IP/maintenance/commandLine.inc" );
1313
1414 function migratePassOne() {
1515 $migrated = 0;
Index: trunk/extensions/CentralAuth/maintenance/migrateStewards.php
@@ -4,7 +4,7 @@
55 if ( $IP === false ) {
66 $IP = dirname( __FILE__ ) . '/../../..';
77 }
8 -requir_once( "$IP/maintenance/commandLine.inc" );
 8+require_once( "$IP/maintenance/commandLine.inc" );
99
1010 echo "Populating global groups table with stewards...\n";
1111

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r107027Update paths from r106787...reedy01:06, 22 December 2011

Status & tagging log