* Moved content from liveCmdLine.inc into commandLine.inc, obsoleting the former.
[lhc/web/wiklou.git] / maintenance / refreshLinks.php
1 <?php
2
3 require_once( "commandLine.inc" );
4 require_once( "refreshLinks.inc" );
5
6 error_reporting( E_ALL & (~E_NOTICE) );
7
8
9 if ($argv[2]) {
10 $start = (int)$argv[2];
11 } else {
12 $start = 1;
13 }
14
15 refreshLinks( $start );
16
17 exit();
18
19 ?>