Fixed bug caused in r52944 - where the inclusion of csshover.htc was lost in the...
[mediawiki.git] / maintenance / dumpInterwiki.php
blob16bf4db00432a9df96c87e86d923d27bfe5a0872
1 <?php
2 /**
3 * Rebuild interwiki table using the file on meta and the language list
4 * Wikimedia specific!
6 * @file
7 * @todo document
8 * @ingroup Maintenance
9 */
11 /** */
12 $oldCwd = getcwd();
14 $optionsWithArgs = array( "o" );
15 require( "commandLine.inc" );
16 require( "dumpInterwiki.inc" );
17 chdir( $oldCwd );
19 # Output
20 if ( isset( $options['o'] ) ) {
21 # To database specified with -o
22 $dbFile = CdbWriter::open( $options['o'] );
25 getRebuildInterwikiDump();