From 614f58d8812c8accc6cece8c05208a7e9ed0f0d2 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Fri, 15 Feb 2002 21:59:01 +0000 Subject: [PATCH] Fix bug #518159 git-svn-id: file:///svn/phpbb/trunk@2164 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/search.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/includes/search.php b/phpBB/includes/search.php index 7ecd9b327a..80002f7def 100644 --- a/phpBB/includes/search.php +++ b/phpBB/includes/search.php @@ -195,7 +195,7 @@ function add_search_words($post_id, $post_text, $post_title = "") break; default: $sql = "INSERT INTO " . SEARCH_WORD_TABLE . " (word_text) - VALUES ('" . $word[$i] . "', 0)"; + VALUES ('" . $word[$i] . "')"; if( !($result = $db->sql_query($sql)) ) { message_die(GENERAL_ERROR, "Couldn't insert new word", "", __LINE__, __FILE__, $sql);