mirror of
https://github.com/friendica/friendica
synced 2024-11-10 03:02:54 +00:00
Categories are not showing up at the bottom of the post
Fixes friendica/friendica#8766
This commit is contained in:
parent
322ac8945f
commit
e1dac1a87a
1 changed files with 6 additions and 8 deletions
|
@ -73,15 +73,13 @@ class Category
|
|||
public static function storeTextByURIId(int $uri_id, int $uid, string $files)
|
||||
{
|
||||
$message = Item::selectFirst(['deleted'], ['uri-id' => $uri_id, 'uid' => $uid]);
|
||||
if (!DBA::isResult($message)) {
|
||||
return;
|
||||
}
|
||||
if (DBA::isResult($message)) {
|
||||
// Clean up all tags
|
||||
DBA::delete('post-category', ['uri-id' => $uri_id, 'uid' => $uid]);
|
||||
|
||||
// Clean up all tags
|
||||
DBA::delete('post-category', ['uri-id' => $uri_id, 'uid' => $uid]);
|
||||
|
||||
if ($message['deleted']) {
|
||||
return;
|
||||
if ($message['deleted']) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if (preg_match_all("/\[(.*?)\]/ism", $files, $result)) {
|
||||
|
|
Loading…
Reference in a new issue