From b30b9b3b68b95e1aa559116fcf718fdbdc672855 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Sun, 30 Sep 2001 23:26:33 +0000 Subject: [PATCH] Fixed sql = NULL cockup and bug #466615 git-svn-id: file:///svn/phpbb/trunk@1106 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpBB/index.php b/phpBB/index.php index 59ec158f2f..c67fe95514 100644 --- a/phpBB/index.php +++ b/phpBB/index.php @@ -141,7 +141,7 @@ if($total_categories = $db->sql_numrows($q_categories)) AND u.user_id = p.poster_id $limit_forums UNION ( - SELECT f.*, NULL, NULL, NULL, NULL + SELECT f.*, NULL, NULL, NULL FROM " . FORUMS_TABLE . " f WHERE NOT EXISTS ( SELECT p.post_time @@ -190,7 +190,7 @@ if($total_categories = $db->sql_numrows($q_categories)) WHERE t.forum_id = f.forum_id AND p.post_id = t.topic_last_post_id AND p.post_time > " . $userdata['session_last_visit'] . " - AND t.topic_moved_id = NULL"; + AND t.topic_moved_id IS NULL"; if(!$new_topic_ids = $db->sql_query($sql)) { message_die(GENERAL_ERROR, "Could not query new topic information", "", __LINE__, __FILE__, $sql);