* (bug 2372) Fix rendering of empty-title inline interwiki links
[lhc/web/wiklou.git] / maintenance / refreshLinks.php
1 <?php
2 /**
3 * @todo document
4 * @package MediaWiki
5 * @subpackage Maintenance
6 */
7
8 /** */
9 require_once( "commandLine.inc" );
10 require_once( "refreshLinks.inc" );
11
12 error_reporting( E_ALL & (~E_NOTICE) );
13
14
15 if ($argv[2]) {
16 $start = (int)$argv[2];
17 } else {
18 $start = 1;
19 }
20
21 refreshLinks( $start );
22
23 exit();
24
25 ?>