]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blobdiff - plugins.php
Fix another script path for plugins
[irc/unrealircd/unrealircd-webpanel.git] / plugins.php
index 739c9c918ae00d720fd72512b54d85875d7c099b..969479ec953e8b4238a8b4ef57e6715e42f38da3 100644 (file)
@@ -59,15 +59,15 @@ class Plugin
        public $error = NULL;
        function __construct($handle)
        {
-               if (!is_dir("plugins/$handle"))
-                       $this->error = "Plugin directory \"plugins/$handle\" doesn't exist";
+               if (!is_dir(UPATH."/plugins/$handle"))
+                       $this->error = "Plugin directory \"".UPATH."/plugins/$handle\" doesn't exist";
 
-               else if (!is_file("plugins/$handle/$handle.php"))
-                       $this->error = "Plugin file \"plugins/$handle/$handle.php\" doesn't exist";
+               else if (!is_file(UPATH."/plugins/$handle/$handle.php"))
+                       $this->error = "Plugin file \"".UPATH."/plugins/$handle/$handle.php\" doesn't exist";
 
                else
                {
-                       require_once "plugins/$handle/$handle.php";
+                       require_once UPATH."/plugins/$handle/$handle.php";
 
                        if (!class_exists($handle))
                                $this->error = "Class \"$handle\" doesn't exist";