From 62a11081e6b3c963f0223abb2aaaab5ff0e5a089 Mon Sep 17 00:00:00 2001 From: tbrehm <t.brehm@ispconfig.org> Date: Sun, 27 May 2007 11:20:08 -0400 Subject: [PATCH] Added plugin class for the server daemon and renamed the modules class. --- server/lib/app.inc.php | 9 ++++++--- 1 files changed, 6 insertions(+), 3 deletions(-) diff --git a/server/lib/app.inc.php b/server/lib/app.inc.php index 1394b1e..88a9010 100644 --- a/server/lib/app.inc.php +++ b/server/lib/app.inc.php @@ -28,8 +28,11 @@ */ class app { - - function app() { + + var modules = array(); + var plugins = array(); + + function app() { global $conf; @@ -104,7 +107,7 @@ fclose($fp); } else { - $this->error("Logfile ist nicht beschreibbar."); + $this->error("Unable to write to logfile."); } } // if } // func -- Gitblit v1.9.1