Skip to content
Snippets Groups Projects
Commit bfa3bbcf authored by Thijs Kinkhorst's avatar Thijs Kinkhorst
Browse files

do not use $errconext, it has been deprecated anyway.

parent c513ca54
No related branches found
No related tags found
No related merge requests found
...@@ -53,7 +53,7 @@ function SimpleSAML_error_handler($errno, $errstr, $errfile = null, $errline = 0 ...@@ -53,7 +53,7 @@ function SimpleSAML_error_handler($errno, $errstr, $errfile = null, $errline = 0
} }
// show an error with a full backtrace // show an error with a full backtrace
$context = (is_null($errfile)?'':" at $errfile:$errline") . (is_null($errcontext)?'':" $errcontext"); $context = (is_null($errfile)?'':" at $errfile:$errline");
$e = new \SimpleSAML\Error\Exception('Error '.$errno.' - '.$errstr . $context); $e = new \SimpleSAML\Error\Exception('Error '.$errno.' - '.$errstr . $context);
$e->logError(); $e->logError();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment