From 3e7853f0e5c2e9b1a0f7b8ac1859e8879d7cb69a Mon Sep 17 00:00:00 2001 From: jmg324 Date: Thu, 11 Jan 2007 14:02:17 +0000 Subject: [PATCH] fetch_entries function post table sql needs single not double quotes for blog column value --- blog/lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/lib.php b/blog/lib.php index ab5b896775..4473a82057 100755 --- a/blog/lib.php +++ b/blog/lib.php @@ -458,7 +458,7 @@ global $CFG, $USER; /// the post table will be used for other things too - $typesql = ' AND p.module = "blog" '; + $typesql = " AND p.module = 'blog' "; /// set the tag id for searching if ($tagid) { -- 2.39.5