forked from GNUsocial/gnu-social
don't try to save empty tags
This commit is contained in:
parent
4853b1e2a0
commit
29b8a6a18f
@ -329,6 +329,7 @@ class Status_network extends Safe_DataObject
|
||||
{
|
||||
$this->clearTags();
|
||||
foreach ($tags as $tag) {
|
||||
if (!empty($tag)) {
|
||||
$snt = new Status_network_tag();
|
||||
$snt->site_id = $this->site_id;
|
||||
$snt->tag = $tag;
|
||||
@ -339,6 +340,7 @@ class Status_network extends Safe_DataObject
|
||||
throw new Exception(_("Unable to save tag."));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user