Merge pull request #285 from halkyon/debugview_changes

Adjusted wording in DebugView for E_DEPRECATED and E_USER_DEPRECATED error levels
This commit is contained in:
Ingo Schommer 2012-04-03 03:02:56 -07:00
commit 58d6f15b7e

View File

@ -31,11 +31,11 @@ class DebugView extends Object {
'class' => 'notice' 'class' => 'notice'
), ),
E_DEPRECATED => array( E_DEPRECATED => array(
'title' => 'Deprecation', 'title' => 'Deprecated',
'class' => 'notice' 'class' => 'notice'
), ),
E_USER_DEPRECATED => array( E_USER_DEPRECATED => array(
'title' => 'Deprecation', 'title' => 'User Deprecated',
'class' => 'notice' 'class' => 'notice'
), ),
E_CORE_ERROR => array( E_CORE_ERROR => array(