mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
Fix #2359 unable to delete all tags from document
This commit is contained in:
parent
ce21449046
commit
bdf4873a31
1 changed files with 2 additions and 1 deletions
|
|
@ -14,6 +14,7 @@ class TagController extends Tag
|
|||
{
|
||||
if (empty($obj->tags))
|
||||
{
|
||||
$obj->tags = '';
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -24,7 +25,7 @@ class TagController extends Tag
|
|||
}
|
||||
else
|
||||
{
|
||||
$obj->tags = null;
|
||||
$obj->tags = '';
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue