From 359c74d320eef7fad24a30b677522a428affe509 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 17 Jul 2012 05:30:32 -0700 Subject: error cleanup --- include/items.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'include') diff --git a/include/items.php b/include/items.php index b7890e602..a780b05e6 100755 --- a/include/items.php +++ b/include/items.php @@ -3760,10 +3760,12 @@ function fetch_post_tags($items) { $tag_finder[] = $item['item_id']; $tag_finder_str = implode(', ', $tag_finder); - $tags = q("select * from term where oid in ( %s ) and otype = %d", - dbesc($tag_finder_str), - intval(TERM_OBJ_POST) - ); + if(strlen($tag_finder_str)) { + $tags = q("select * from term where oid in ( %s ) and otype = %d", + dbesc($tag_finder_str), + intval(TERM_OBJ_POST) + ); + } for($x = 0; $x < count($items); $x ++) { if(count($tags)) { -- cgit v1.2.3