From: Davide Franco Date: Fri, 24 Jun 2011 16:20:21 +0000 (+0200) Subject: bacula-web: Two new functions in CErrorHandler php class X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=9b4083313d1f769c8a777792913b59fa53d19027;p=bacula%2Fbacula bacula-web: Two new functions in CErrorHandler php class - TriggerError() - SetDebug() --- 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() { } } + ?>