Index: trunk/extensions/CentralAuth/maintenance/migratePass0.php |
— | — | @@ -8,7 +8,7 @@ |
9 | 9 | if ( $IP === false ) { |
10 | 10 | $IP = dirname( __FILE__ ) . '/../../..'; |
11 | 11 | } |
12 | | -requir_once( "$IP/maintenance/commandLine.inc" ); |
| 12 | +require_once( "$IP/maintenance/commandLine.inc" ); |
13 | 13 | |
14 | 14 | /** |
15 | 15 | * Copy user data for this wiki into the localuser table |
Index: trunk/extensions/CentralAuth/maintenance/migratePass1.php |
— | — | @@ -8,7 +8,7 @@ |
9 | 9 | if ( $IP === false ) { |
10 | 10 | $IP = dirname( __FILE__ ) . '/../../..'; |
11 | 11 | } |
12 | | -requir_once( "$IP/maintenance/commandLine.inc" ); |
| 12 | +require_once( "$IP/maintenance/commandLine.inc" ); |
13 | 13 | |
14 | 14 | function migratePassOne() { |
15 | 15 | $migrated = 0; |
Index: trunk/extensions/CentralAuth/maintenance/migrateStewards.php |
— | — | @@ -4,7 +4,7 @@ |
5 | 5 | if ( $IP === false ) { |
6 | 6 | $IP = dirname( __FILE__ ) . '/../../..'; |
7 | 7 | } |
8 | | -requir_once( "$IP/maintenance/commandLine.inc" ); |
| 8 | +require_once( "$IP/maintenance/commandLine.inc" ); |
9 | 9 | |
10 | 10 | echo "Populating global groups table with stewards...\n"; |
11 | 11 | |