diff options
| -rw-r--r-- | phpBB/develop/create_search_index.php | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/develop/create_search_index.php b/phpBB/develop/create_search_index.php index 28001035f6..c1a7125d61 100644 --- a/phpBB/develop/create_search_index.php +++ b/phpBB/develop/create_search_index.php @@ -36,7 +36,6 @@ $search_errors = array();  $search = new $class_name($search_errors);  $batch_size = isset($argv[2]) ? $argv[2] : 2000; -$time = time();  if (method_exists($search, 'create_index'))  { @@ -68,6 +67,7 @@ else  	while ($post_counter <= $max_post_id)  	{  		$row_count = 0; +		$time = time();  		printf("Processing posts with %d <= post_id <= %d\n",  			$post_counter + 1,  | 
