Index: branches/5.2.x/core/kernel/utility/debugger.php =================================================================== diff -u -N -r16513 -r16535 --- branches/5.2.x/core/kernel/utility/debugger.php (.../debugger.php) (revision 16513) +++ branches/5.2.x/core/kernel/utility/debugger.php (.../debugger.php) (revision 16535) @@ -1,6 +1,6 @@ self::ROW_TYPE_ERROR, 'Warning' => self::ROW_TYPE_WARNING, 'Notice' => self::ROW_TYPE_NOTICE, + 'Deprecation Notice' => self::ROW_TYPE_NOTICE, ); return $error_map[$this->getErrorNameByCode($data['no'])]; @@ -1462,9 +1463,8 @@ ); if ( defined('E_DEPRECATED') ) { - // since PHP 5.3 - $error_map['Notice'][] = E_DEPRECATED; - $error_map['Notice'][] = E_USER_DEPRECATED; + // Since PHP 5.3. + $error_map['Deprecation Notice'] = array(E_DEPRECATED, E_USER_DEPRECATED); } foreach ($error_map as $error_name => $error_codes) {