24 lines
476 B
PHP
24 lines
476 B
PHP
<?php
|
|
/**
|
|
* Rebuild interwiki table using the file on meta and the language list
|
|
* Wikimedia specific!
|
|
* @todo document
|
|
* @addtogroup Maintenance
|
|
*/
|
|
|
|
/** */
|
|
$oldCwd = getcwd();
|
|
|
|
$optionsWithArgs = array( "o" );
|
|
include_once( "commandLine.inc" );
|
|
include_once( "dumpInterwiki.inc" );
|
|
chdir( $oldCwd );
|
|
|
|
# Output
|
|
if ( isset( $options['o'] ) ) {
|
|
# To database specified with -o
|
|
$dbFile = dba_open( $options['o'], "n", "cdb_make" );
|
|
}
|
|
|
|
getRebuildInterwikiDump();
|
|
?>
|