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-Tag: Release-5.2.1~274 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=1ef7169b05b2054c9949e30658a9d30e70f6a32c;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() { } } + ?>