|
From: Paul S. O. <ps...@us...> - 2001-11-21 01:21:06
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv1670
Modified Files:
posting.php
Log Message:
Fixes small problem with MS Access
Index: posting.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/posting.php,v
retrieving revision 1.102
retrieving revision 1.103
diff -C2 -r1.102 -r1.103
*** posting.php 2001/11/20 23:45:26 1.102
--- posting.php 2001/11/21 01:21:03 1.103
***************
*** 253,258 ****
FROM " . SEARCH_MATCH_TABLE . "
WHERE word_id IN ($word_id_sql)
! GROUP BY word_id
! ORDER BY post_occur_count DESC";
if( !$result = $db->sql_query($sql) )
{
--- 253,257 ----
FROM " . SEARCH_MATCH_TABLE . "
WHERE word_id IN ($word_id_sql)
! GROUP BY word_id";
if( !$result = $db->sql_query($sql) )
{
|