diff options
Diffstat (limited to 'modules/gallery/helpers')
-rw-r--r-- | modules/gallery/helpers/MY_url.php | 2 | ||||
-rw-r--r-- | modules/gallery/helpers/gallery.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/gallery/helpers/MY_url.php b/modules/gallery/helpers/MY_url.php index 81dcbe1e..5e8bfc9e 100644 --- a/modules/gallery/helpers/MY_url.php +++ b/modules/gallery/helpers/MY_url.php @@ -50,7 +50,7 @@ class url extends url_Core { if (!empty($item)) { Router::$controller = "{$item->type}s"; - Router::$controller_path = APPPATH . "controllers/{$item->type}s.php"; + Router::$controller_path = MODPATH . "gallery/controllers/{$item->type}s.php"; Router::$method = $item->id; } } diff --git a/modules/gallery/helpers/gallery.php b/modules/gallery/helpers/gallery.php index bf33fa2b..34671f1f 100644 --- a/modules/gallery/helpers/gallery.php +++ b/modules/gallery/helpers/gallery.php @@ -27,7 +27,7 @@ class gallery_Core { if (Router::$controller != "login" && !empty($maintenance_mode) && !user::active()->admin) { Router::$controller = "maintenance"; - Router::$controller_path = APPPATH . "controllers/maintenance.php"; + Router::$controller_path = MODPATH . "gallery/controllers/maintenance.php"; Router::$method = "index"; } } |