From 8710f270cd97350336fbe36d3bae3a15ea0ad628 Mon Sep 17 00:00:00 2001 From: Janusz Dobrowolski Date: Thu, 25 Feb 2010 21:14:52 +0000 Subject: [PATCH] Changed _vd() debug function to display notification instead of error. --- includes/ui/ui_view.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/ui/ui_view.inc b/includes/ui/ui_view.inc index 65b6bf91..f2dc7646 100644 --- a/includes/ui/ui_view.inc +++ b/includes/ui/ui_view.inc @@ -1266,7 +1266,7 @@ if (!function_exists('_vd')) $str = (!empty($title) ? ($title .':') : '') .'
';
     	$str .= print_r($mixed, true); //var_dump($mixed);
     	$str .= "
\n"; - display_error('
'.$str.'
'); + display_notification('
'.$str.'
'); if ($exit) exit; } -- 2.30.2