summaryrefslogtreecommitdiff
path: root/classes/feeditem/common.php
diff options
context:
space:
mode:
Diffstat (limited to 'classes/feeditem/common.php')
-rwxr-xr-xclasses/feeditem/common.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/feeditem/common.php b/classes/feeditem/common.php
index 6a9be8aca..fde481179 100755
--- a/classes/feeditem/common.php
+++ b/classes/feeditem/common.php
@@ -189,7 +189,7 @@ abstract class FeedItem_Common extends FeedItem {
$tmp = [];
foreach ($cats as $rawcat) {
- $tmp = array_merge($tmp, explode(",", $rawcat));
+ array_push($tmp, ...explode(",", $rawcat));
}
$tmp = array_map(function($srccat) {