fix use of old egw class in favor of new Api\Egw

This commit is contained in:
Ralf Becker 2016-11-02 09:38:37 +01:00
parent 225bc0bbc2
commit 16689ebc27

View File

@ -92,7 +92,7 @@ function egw_exception_handler($e)
// handle redirects without logging // handle redirects without logging
if ($e instanceof Api\Exception\Redirect) if ($e instanceof Api\Exception\Redirect)
{ {
egw::redirect($e->url, $e->app); Api\Egw::redirect($e->url, $e->app);
} }
// logging all exceptions to the error_log (if not cli) and get headline // logging all exceptions to the error_log (if not cli) and get headline
$headline = null; $headline = null;