From d4b28d7c075cb59802a9054ccef323110b2740f9 Mon Sep 17 00:00:00 2001 From: Shish Date: Mon, 16 Jul 2018 08:46:01 +0100 Subject: [PATCH] fixup alias non-recursion --- core/imageboard.pack.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/imageboard.pack.php b/core/imageboard.pack.php index 0ddde027..dd797801 100644 --- a/core/imageboard.pack.php +++ b/core/imageboard.pack.php @@ -1116,7 +1116,7 @@ class Tag { $aliases = array($tag); } else { - $aliases = explode($newtags); // Tag::explode($newtags); - recursion can be infinite + $aliases = explode(" ", $newtags); // Tag::explode($newtags); - recursion can be infinite } foreach($aliases as $alias) {