Got the same error when there were additional GET-parameters like in/scp/ajax.php/tickets/1/status/close/3?_uid=1449671536530Made another modification in the same file: function get_path_info() {
if(isset($_SERVER))
return $_SERVER;
if(isset($_SERVER))
return $_SERVER;
# BEGIN kb@webmatic.de 2015-12-09
$path_info = str_replace($_SERVER, '', $_SERVER);
if ( $pos = strpos($path_info, '?') )
{
$path_info = substr($path_info, 0, $pos);
}
return $path_info;
# END kb@webmatic.de 2015-12-09
return null;
}