diff options
Diffstat (limited to 'core/libraries/Admin_View.php')
-rw-r--r-- | core/libraries/Admin_View.php | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/core/libraries/Admin_View.php b/core/libraries/Admin_View.php index e88b01ee..9ca585d2 100644 --- a/core/libraries/Admin_View.php +++ b/core/libraries/Admin_View.php @@ -45,11 +45,6 @@ class Admin_View_Core extends View { return $absolute_url ? url::abs_file($arg) : url::file($arg); } - public function file($path) { - $theme_path = "themes/{$this->theme_name}/$path"; - return url::file(file_exists($theme_path) ? $theme_path : $path); - } - public function display($page_name, $view_class="View") { return new $view_class($page_name); } |