diff options
Diffstat (limited to 'src/lib/MessageHandler.class.php')
-rw-r--r-- | src/lib/MessageHandler.class.php | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/lib/MessageHandler.class.php b/src/lib/MessageHandler.class.php index 2dce491..1fa9faf 100644 --- a/src/lib/MessageHandler.class.php +++ b/src/lib/MessageHandler.class.php @@ -1,11 +1,5 @@ <?php - -require_once('send/SenderGVSMS.class.php'); -require_once('send/SenderIdentica.class.php'); - -set_include_path(get_include_path().PATH_SEPARATOR."$BASE/src/plugins"); - class MessageHandler { public function __constructor() { @@ -28,7 +22,7 @@ class MessageHandler { $value = (int)$value; break; } - configSet($param, $value); + $obj->configSet($param, $value); } } return $obj; @@ -38,7 +32,7 @@ class MessageHandler { $private_senders = array(); $broadcast_senders = array(); - + $plugin_list = $m->getSysConf('plugins'); $plugins = explode(',', $plugin_list); foreach ($plugins as $plugin) { |