From 55623ace928970786112d9a6475465b085676989 Mon Sep 17 00:00:00 2001 From: mark_story Date: Sun, 14 Nov 2010 23:37:09 -0500 Subject: [PATCH] Adding deprecated error level to the map switch. --- cake/libs/error_handler.php | 4 ++++ 1 file changed, 4 insertions(+) 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;