aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-12-30 13:33:34 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-12-30 13:33:34 +0000
commitea751b77f103a920f1b22a7734ac2965a9ce67df (patch)
tree86d7e5d5b7711eabdfffa4d4934707955b220cd0
parent520f3ceb5522ecb036deb0c43277383c819b5ad5 (diff)
downloadforums-ea751b77f103a920f1b22a7734ac2965a9ce67df.tar
forums-ea751b77f103a920f1b22a7734ac2965a9ce67df.tar.gz
forums-ea751b77f103a920f1b22a7734ac2965a9ce67df.tar.bz2
forums-ea751b77f103a920f1b22a7734ac2965a9ce67df.tar.xz
forums-ea751b77f103a920f1b22a7734ac2965a9ce67df.zip
Fix bug #497725
git-svn-id: file:///svn/phpbb/trunk@1743 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r--phpBB/posting.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php
index e09e1ab73d..23182b2d02 100644
--- a/phpBB/posting.php
+++ b/phpBB/posting.php
@@ -155,7 +155,7 @@ function remove_common($percent, $word_id_list = array())
message_die(GENERAL_ERROR, "Couldn't delete word list entry", "", __LINE__, __FILE__, $sql);
}
- $sql = "DELETE FROM " . SEARCH_WORD_MATCH . "
+ $sql = "DELETE FROM " . SEARCH_MATCH_TABLE . "
WHERE word_id IN ($common_word_id_list)";
$result = $db->sql_query($sql);
if( !$result )