mirror of
https://github.com/friendica/friendica
synced 2025-04-28 00:30:10 +00:00
Fix adding / removing photo tags + tagrm delete via GET + Item::update / add Term::deleteAllTags
This commit is contained in:
parent
dbfe5c9d2a
commit
fd2e06781d
5 changed files with 81 additions and 28 deletions
|
@ -816,7 +816,7 @@ class Item extends BaseObject
|
|||
$tags = $fields['tag'];
|
||||
$fields['tag'] = null;
|
||||
} else {
|
||||
$tags = '';
|
||||
$tags = null;
|
||||
}
|
||||
|
||||
if (array_key_exists('file', $fields)) {
|
||||
|
@ -895,10 +895,14 @@ class Item extends BaseObject
|
|||
}
|
||||
}
|
||||
|
||||
if (!empty($tags)) {
|
||||
Term::insertFromTagFieldByItemId($item['id'], $tags);
|
||||
if (!empty($item['tag'])) {
|
||||
DBA::update('item', ['tag' => ''], ['id' => $item['id']]);
|
||||
if (!is_null($tags)) {
|
||||
Term::deleteAllTags($item['id']);
|
||||
|
||||
if ($tags) {
|
||||
Term::insertFromTagFieldByItemId($item['id'], $tags);
|
||||
if (!empty($item['tag'])) {
|
||||
DBA::update('item', ['tag' => ''], ['id' => $item['id']]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue