From 9b4083313d1f769c8a777792913b59fa53d19027 Mon Sep 17 00:00:00 2001 From: Davide Franco Date: Fri, 24 Jun 2011 18:20:21 +0200 Subject: [PATCH] bacula-web: Two new functions in CErrorHandler php class - TriggerError() - SetDebug() --- gui/bacula-web/includes/app/cerrorhandler.class.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/gui/bacula-web/includes/app/cerrorhandler.class.php b/gui/bacula-web/includes/app/cerrorhandler.class.php index b24e90458e..6812873917 100644 --- a/gui/bacula-web/includes/app/cerrorhandler.class.php +++ b/gui/bacula-web/includes/app/cerrorhandler.class.php @@ -22,10 +22,21 @@ class CErrorHandler } + public function SetDebug( $debuglevel ) + { + $this->debug_level = $debuglevel; + } + + public function TriggerError( $type, $string, $file = '', $line = '', $vars = '' ) + { + + } + public function __destruct() { } } + ?> -- 2.39.5