diff --git a/kernel/post.class.php b/kernel/post.class.php index 8083f664..373d229f 100644 --- a/kernel/post.class.php +++ b/kernel/post.class.php @@ -118,6 +118,11 @@ class Post extends fileContent $tags = $this->getField('tags'); if($returnsArray) { + + if($tags==false) { + return array(); + } + return explode(',', $tags); } else {