diff options
author | Bharat Mediratta <bharat@menalto.com> | 2008-11-25 04:41:14 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2008-11-25 04:41:14 +0000 |
commit | 229e531ab97cdc103984c095c41bc323375897f6 (patch) | |
tree | b8ffccd962f5a5618a33d5a6108178c27eabaaa8 | |
parent | 8b84b188bf5640c95fcc05a99f08780344476b27 (diff) |
Change url() to use url::file() since it's more concise.
-rw-r--r-- | core/libraries/Theme.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/libraries/Theme.php b/core/libraries/Theme.php index 8daad77c..315261a5 100644 --- a/core/libraries/Theme.php +++ b/core/libraries/Theme.php @@ -27,7 +27,7 @@ class Theme_Core { } public function url($path) { - return url::base() . "themes/{$this->theme_name}/$path"; + return url::file("themes/{$this->theme_name}/$path"); } public function item() { |