diff --git a/include/statistik.class.php b/include/statistik.class.php index 15624de26..e2b5e1a7a 100644 --- a/include/statistik.class.php +++ b/include/statistik.class.php @@ -525,7 +525,7 @@ class statistik extends basis_db foreach($_REQUEST as $name=>$value) { // Inputs, die in eckigen Klammern stehen, werden als Array interpretiert - if (substr($value, 0, 1) == '[' && substr($value, -1) == ']') + if (is_string($value) && substr($value, 0, 1) == '[' && substr($value, -1) == ']') { //Eckige Klammern entfernen und String aufsplitten $value = substr($value, 1);