From c4dcf4f2d3e071c5eea84e913c7fe95e71032fee Mon Sep 17 00:00:00 2001 From: Sean Harvey Date: Wed, 19 Aug 2009 06:20:25 +0000 Subject: [PATCH] MINOR Changed "Notice" and "Warning" to "User Notice" and "User Warning" if E_USER_NOTICE and E_USER_WARNING respectively git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@84822 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- dev/DebugView.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev/DebugView.php b/dev/DebugView.php index d2440d5d9..e096342c7 100644 --- a/dev/DebugView.php +++ b/dev/DebugView.php @@ -27,7 +27,7 @@ class DebugView { 'class' => 'notice' ), E_USER_NOTICE => array( - 'title' => 'Notice', + 'title' => 'User Notice', 'class' => 'notice' ), E_CORE_ERROR => array( @@ -43,7 +43,7 @@ class DebugView { 'class' => 'warning' ), E_USER_WARNING => array( - 'title' => 'Warning', + 'title' => 'User Warning', 'class' => 'warning' ) );