Index: trunk/tools/mwmultiversion/multiversion/switchAllMediaWikis |
— | — | @@ -1,7 +1,7 @@ |
2 | 2 | #!/usr/bin/env php |
3 | 3 | <?php |
4 | 4 | error_reporting( E_ALL ); |
5 | | -requre_once( dirname( __FILE__ ) . '/defines.php' ); |
| 5 | +require_once( dirname( __FILE__ ) . '/defines.php' ); |
6 | 6 | /* |
7 | 7 | * This script switches all wikis running one version to another version. |
8 | 8 | * It merely changes the wikiversions.dat and wikiversions.cdb files on /home, |
Index: trunk/tools/mwmultiversion/multiversion/refreshWikiversionsCDB |
— | — | @@ -1,7 +1,7 @@ |
2 | 2 | #!/usr/bin/env php |
3 | 3 | <?php |
4 | 4 | error_reporting( E_ALL ); |
5 | | -requre_once( dirname( __FILE__ ) . '/defines.php' ); |
| 5 | +require_once( dirname( __FILE__ ) . '/defines.php' ); |
6 | 6 | /* |
7 | 7 | * Populate wikiversions.cdb file using all the items in wikiversions.dat |
8 | 8 | * |
Index: trunk/tools/mwmultiversion/multiversion/activeMWVersions |
— | — | @@ -1,7 +1,7 @@ |
2 | 2 | #!/usr/bin/env php |
3 | 3 | <?php |
4 | 4 | error_reporting( 0 ); |
5 | | -requre_once( dirname( __FILE__ ) . '/defines.php' ); |
| 5 | +require_once( dirname( __FILE__ ) . '/defines.php' ); |
6 | 6 | /* |
7 | 7 | * Returns a space separated list of all active MW versions (e.g. "x.xx"). |
8 | 8 | * Versions are read from /usr/local/apache/common-local/wikiversions.cdb. |
Index: trunk/tools/mwmultiversion/multiversion/getMWVersion |
— | — | @@ -1,7 +1,7 @@ |
2 | 2 | #!/usr/bin/env php |
3 | 3 | <?php |
4 | 4 | error_reporting( 0 ); |
5 | | -requre_once( dirname( __FILE__ ) . '/defines.php' ); |
| 5 | +require_once( dirname( __FILE__ ) . '/defines.php' ); |
6 | 6 | /** |
7 | 7 | * This script prints the MW version associated with a specified wikidb. |
8 | 8 | */ |