Update Helpers.php

This commit is contained in:
Squidly271
2025-09-20 19:03:13 -04:00
committed by GitHub
parent f7caf24ba9
commit 07e17871dd

View File

@@ -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) {