errorhandler: remove unneeded stuff

This commit is contained in:
Andrew Dolgov 2013-04-17 08:32:45 +04:00
parent 7a51032cab
commit 77be1217e5
1 changed files with 1 additions and 6 deletions

View File

@ -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"];