Index: trunk/phase3/maintenance/language/digit2html.php |
— | — | @@ -4,7 +4,7 @@ |
5 | 5 | * @ingroup MaintenanceLanguage |
6 | 6 | */ |
7 | 7 | |
8 | | -require( '../commandLine.inc' ); |
| 8 | +require_once( dirname(__FILE__).'/../commandLine.inc' ); |
9 | 9 | |
10 | 10 | # A list of unicode numerals is available at: |
11 | 11 | # http://www.fileformat.info/info/unicode/category/Nd/list.htm |
Index: trunk/phase3/maintenance/language/date-formats.php |
— | — | @@ -8,7 +8,7 @@ |
9 | 9 | |
10 | 10 | |
11 | 11 | $IP = dirname( __FILE__ ) . '/../..'; |
12 | | -require_once( "$IP/maintenance/commandLine.inc" ); |
| 12 | +require_once( dirname(__FILE__).'/../commandLine.inc' ); |
13 | 13 | |
14 | 14 | foreach ( glob( "$IP/languages/messages/Messages*.php" ) as $filename ) { |
15 | 15 | $base = basename( $filename ); |
Index: trunk/phase3/maintenance/preprocessorFuzzTest.php |
— | — | @@ -4,7 +4,7 @@ |
5 | 5 | * @ingroup Maintenance |
6 | 6 | */ |
7 | 7 | |
8 | | -require_once( dirname( __FILE__ ). '/../maintenance/commandLine.inc' ); |
| 8 | +require_once( 'commandLine.inc' ); |
9 | 9 | |
10 | 10 | $wgHooks['BeforeParserFetchTemplateAndtitle'][] = 'PPFuzzTester::templateHook'; |
11 | 11 | |