diff options
Diffstat (limited to 'phpBB/develop/search_fill.php')
-rw-r--r-- | phpBB/develop/search_fill.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/develop/search_fill.php b/phpBB/develop/search_fill.php index 23acee6a1a..af2dd6a288 100644 --- a/phpBB/develop/search_fill.php +++ b/phpBB/develop/search_fill.php @@ -32,7 +32,7 @@ $user->session_begin(); $auth->acl($user->data); $user->setup(); -$search_type = $config['search_type']; +$search_type = phpbb::$config['search_type']; if (!file_exists(PHPBB_ROOT_PATH . 'includes/search/' . $search_type . '.' . PHP_EXT)) { @@ -76,7 +76,7 @@ for(;$postcounter <= $max_post_id; $postcounter += $batchsize) $batchstart = $postcounter + 1; $batchend = $postcounter + $batchsize; $batchcount++; - + $sql = "SELECT * FROM " . POSTS_TABLE . " WHERE post_id @@ -92,7 +92,7 @@ for(;$postcounter <= $max_post_id; $postcounter += $batchsize) $db->sql_freeresult($result); $post_rows = sizeof($rowset); - + if( $post_rows ) { |