API Debug::showError() no longer calls exit() (fixes #2644)

Remove exit() from showError to continue execution after an user_error of warning (warningHandler) or notice (noticeHandler) level.
This commit is contained in:
jakr 2012-07-23 11:51:47 +02:00 committed by Ingo Schommer
parent 70eaa270e4
commit c2414aa7dd

View File

@ -416,7 +416,6 @@ class Debug {
}
$reporter->writeTrace(($errcontext ? $errcontext : debug_backtrace()));
$reporter->writeFooter();
exit(1);
}
/**