From e80cb60e404e41697d03a30b1c10ab3579ed528c Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 20 Apr 2021 19:17:07 +0000 Subject: [PATCH] Bugfix: Store to category --- src/Model/Post/Category.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Model/Post/Category.php b/src/Model/Post/Category.php index c2912fa73f..ecd401b453 100644 --- a/src/Model/Post/Category.php +++ b/src/Model/Post/Category.php @@ -183,7 +183,7 @@ class Category if (preg_match_all("/\<(.*?)\>/ism", $files, $result)) { foreach ($result[1] as $file) { - self::storeFileByURIId($uri_id, $uid, self::FILE, $file); + self::storeFileByURIId($uri_id, $uid, self::CATEGORY, $file); } } }