From 07e17871dd4aad355b190302484ef7d2c13be285 Mon Sep 17 00:00:00 2001 From: Squidly271 Date: Sat, 20 Sep 2025 19:03:13 -0400 Subject: [PATCH] Update Helpers.php --- emhttp/plugins/dynamix/include/Helpers.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emhttp/plugins/dynamix/include/Helpers.php b/emhttp/plugins/dynamix/include/Helpers.php index 529c88179..5c3dfacc5 100644 --- a/emhttp/plugins/dynamix/include/Helpers.php +++ b/emhttp/plugins/dynamix/include/Helpers.php @@ -386,7 +386,7 @@ function cpu_list() { } function my_explode($split, $text, $count=2) { - return array_pad(explode($split, $text, $count), $count, ''); + return array_pad(explode($split, $text??"", $count), $count, ''); } function my_preg_split($split, $text, $count=2) {