errorhandler: remove unneeded stuff
This commit is contained in:
parent
7a51032cab
commit
77be1217e5
|
@ -22,15 +22,10 @@ function ttrss_error_handler($errno, $errstr, $file, $line, $context) {
|
|||
function ttrss_fatal_handler() {
|
||||
global $logger;
|
||||
|
||||
$file = "UNKNOWN FILE";
|
||||
$errstr = "UNKNOWN";
|
||||
$errno = E_CORE_ERROR;
|
||||
$line = -1;
|
||||
|
||||
$error = error_get_last();
|
||||
|
||||
if ($error !== NULL) {
|
||||
$errno = $error["type"];
|
||||
$errno = $error["type"];
|
||||
$file = $error["file"];
|
||||
$line = $error["line"];
|
||||
$errstr = $error["message"];
|
||||
|
|
Loading…
Reference in New Issue