From fba0d77e7b0160571b4ccea38883bdd01d538eb4 Mon Sep 17 00:00:00 2001 From: Wisp X <1591788658@qq.com> Date: Sat, 7 May 2022 09:56:55 +0800 Subject: [PATCH] fix a bug --- app/Utils.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Utils.php b/app/Utils.php index 32ebe61e..d3ae901a 100644 --- a/app/Utils.php +++ b/app/Utils.php @@ -147,7 +147,7 @@ class Utils { foreach ($array as &$value) { if (is_array($value)) { - $value = self::filter($value); + $value = self::filter($value, $callback, $mode); } } return array_filter($array, $callback, $mode);