This commit is contained in:
dignajar 2015-09-13 17:41:34 -03:00
parent 370551d438
commit be704dd2a5
1 changed files with 5 additions and 0 deletions

View File

@ -118,6 +118,11 @@ class Post extends fileContent
$tags = $this->getField('tags');
if($returnsArray) {
if($tags==false) {
return array();
}
return explode(',', $tags);
}
else {