Index: trunk/core/kernel/utility/debugger.php =================================================================== diff -u -N -r8078 -r8402 --- trunk/core/kernel/utility/debugger.php (.../debugger.php) (revision 8078) +++ trunk/core/kernel/utility/debugger.php (.../debugger.php) (revision 8402) @@ -840,6 +840,10 @@ $error_map['PHP5 Strict'] = Array(E_STRICT); } + if (defined('E_RECOVERABLE_ERROR')) { + $error_map['Fatal Error (recoverable)'] = Array(E_RECOVERABLE_ERROR); + } + foreach ($error_map as $error_name => $error_codes) { if (in_array($error_code, $error_codes)) { return $error_name;