Adding deprecated error level to the map switch.

This commit is contained in:
mark_story 2010-11-14 23:37:09 -05:00
parent f2f3f13c75
commit 55623ace92

View file

@ -169,6 +169,10 @@ class ErrorHandler {
$error = 'Strict';
$log = LOG_NOTICE;
break;
case E_DEPRECATED:
$error = 'Deprecated';
$log = LOG_NOTICE;
break;
default:
return array();
break;