diff options
author | David M <davidmj@users.sourceforge.net> | 2006-12-15 02:41:43 +0000 |
---|---|---|
committer | David M <davidmj@users.sourceforge.net> | 2006-12-15 02:41:43 +0000 |
commit | 35ac391fe341288da0abc72707aa9970d7c8a8c8 (patch) | |
tree | 4b5a90634fb98457b03474c3e1d2b78e58021ed2 /phpBB/develop/search_fill.php | |
parent | 950d67d60e4354f418834ceb100ab2d260611037 (diff) | |
download | forums-35ac391fe341288da0abc72707aa9970d7c8a8c8.tar forums-35ac391fe341288da0abc72707aa9970d7c8a8c8.tar.gz forums-35ac391fe341288da0abc72707aa9970d7c8a8c8.tar.bz2 forums-35ac391fe341288da0abc72707aa9970d7c8a8c8.tar.xz forums-35ac391fe341288da0abc72707aa9970d7c8a8c8.zip |
count -> sizeof
git-svn-id: file:///svn/phpbb/trunk@6766 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/develop/search_fill.php')
-rw-r--r-- | phpBB/develop/search_fill.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/develop/search_fill.php b/phpBB/develop/search_fill.php index 8bb656b901..1ab74f562c 100644 --- a/phpBB/develop/search_fill.php +++ b/phpBB/develop/search_fill.php @@ -82,7 +82,7 @@ for(;$postcounter <= $max_post_id; $postcounter += $batchsize) $rowset = $db->sql_fetchrowset($result); $db->sql_freeresult($result); - $post_rows = count($rowset); + $post_rows = sizeof($rowset); if( $post_rows ) { |