Commit 61ec63c0 authored by Chris Graham's avatar Chris Graham
Browse files

Fixed MANTIS-4841 (Bots may generate error notifications via complicated URLs)

parent 3c8de2ec
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1695,7 +1695,7 @@ function __param($array, $name, $default, $integer = false, $posted = false)

    $val = $array[$name];
    if (is_array($val)) {
        $val = trim(implode(',', $val), ' ,');
        $val = @trim(implode(',', $val), ' ,'); // @ because it could be any complex arbitrary data structure (Composr does not do this, but bots may generate such URLs)
    }

    static $mq = null;