|
From: Paul S. O. <ps...@us...> - 2002-03-03 19:28:48
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv17288/includes
Modified Files:
search.php
Log Message:
Change to count method in word_common ... problem seemed to exist on older PHP versions for some reason
Index: search.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/search.php,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -r1.12 -r1.13
*** search.php 25 Feb 2002 01:00:48 -0000 1.12
--- search.php 3 Mar 2002 19:28:44 -0000 1.13
***************
*** 279,283 ****
global $db;
! $sql = ( $mode == "global" ) ? "SELECT COUNT(DISTINCT post_id) AS total_posts FROM " . SEARCH_MATCH_TABLE : "SELECT SUM(forum_posts) AS total_posts FROM " . FORUMS_TABLE;
if( !($result = $db->sql_query($sql)) )
{
--- 279,283 ----
global $db;
! $sql = ( $mode == "global" ) ? "SELECT COUNT(post_id) AS total_posts FROM " . SEARCH_MATCH_TABLE . " GROUP BY post_id" : "SELECT SUM(forum_posts) AS total_posts FROM " . FORUMS_TABLE;
if( !($result = $db->sql_query($sql)) )
{
|