diff --git a/cake/libs/error_handler.php b/cake/libs/error_handler.php index 686622761..6a677162c 100644 --- a/cake/libs/error_handler.php +++ b/cake/libs/error_handler.php @@ -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;