error cleanup

This commit is contained in:
friendica
2012-07-17 05:30:32 -07:00
parent 91e4c2fce1
commit 359c74d320
4 changed files with 8 additions and 27 deletions

View File

@@ -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)) {