summaryrefslogtreecommitdiff
path: root/modules/gallery/libraries/Theme_View.php
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-11-27 17:12:13 -0800
committerBharat Mediratta <bharat@menalto.com>2009-11-27 17:12:13 -0800
commit22149b52c309152b3e0e186159df9e80ae5c28f8 (patch)
treeaa97b4b534eeda419d4319f74a89bc9a07eacaee /modules/gallery/libraries/Theme_View.php
parentce183e5a698cf0611a68d11fad5a490a91aa9350 (diff)
Move the theme fallback checking into theme::load_themes() so that
we're calling it once per request.
Diffstat (limited to 'modules/gallery/libraries/Theme_View.php')
-rw-r--r--modules/gallery/libraries/Theme_View.php6
1 files changed, 0 insertions, 6 deletions
diff --git a/modules/gallery/libraries/Theme_View.php b/modules/gallery/libraries/Theme_View.php
index b64deab9..817a46ad 100644
--- a/modules/gallery/libraries/Theme_View.php
+++ b/modules/gallery/libraries/Theme_View.php
@@ -29,12 +29,6 @@ class Theme_View_Core extends Gallery_View {
* @return void
*/
public function __construct($name, $page_type, $page_subtype) {
- $theme_name = module::get_var("gallery", "active_site_theme");
- if (!file_exists(THEMEPATH . $theme_name)) {
- module::set_var("gallery", "active_site_theme", "wind");
- theme::load_themes();
- Kohana::log("error", "Unable to locate theme '$theme_name', switching to default theme.");
- }
parent::__construct($name);
$this->theme_name = module::get_var("gallery", "active_site_theme");