|
From: Paul S. O. <ps...@us...> - 2002-02-15 21:59:04
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv13335/includes
Modified Files:
search.php
Log Message:
Fix bug #518159
Index: search.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/search.php,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** search.php 14 Feb 2002 17:43:56 -0000 1.9
--- search.php 15 Feb 2002 21:59:01 -0000 1.10
***************
*** 196,200 ****
default:
$sql = "INSERT INTO " . SEARCH_WORD_TABLE . " (word_text)
! VALUES ('" . $word[$i] . "', 0)";
if( !($result = $db->sql_query($sql)) )
{
--- 196,200 ----
default:
$sql = "INSERT INTO " . SEARCH_WORD_TABLE . " (word_text)
! VALUES ('" . $word[$i] . "')";
if( !($result = $db->sql_query($sql)) )
{
|