aboutsummaryrefslogtreecommitdiff
path: root/h-source/Application/Controllers/BaseController.php
diff options
context:
space:
mode:
authorAntonio Gallo <tonicucoz@gmail.com>2011-12-11 12:12:43 +0000
committerAntonio Gallo <tonicucoz@gmail.com>2011-12-11 12:12:43 +0000
commitf49ae662a10351e84e97aebd15394df5a591898f (patch)
tree4e6de1e094a7f57031e1a5302794f14035c682fc /h-source/Application/Controllers/BaseController.php
parent135907a9286db4fad6a75a1160d727974337a16f (diff)
added jquery mobile
Diffstat (limited to 'h-source/Application/Controllers/BaseController.php')
-rw-r--r--h-source/Application/Controllers/BaseController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/h-source/Application/Controllers/BaseController.php b/h-source/Application/Controllers/BaseController.php
index 7d51cd5..756316a 100644
--- a/h-source/Application/Controllers/BaseController.php
+++ b/h-source/Application/Controllers/BaseController.php
@@ -254,7 +254,7 @@ class BaseController extends Controller
protected function cleverLoad($file)
{
$fileInt = $file."_".$this->lang;
- if (file_exists(ROOT . DS . APPLICATION_PATH . DS . 'Views' . DS . ucwords($this->controller) . DS . $fileInt . '.php'))
+ if (file_exists(ROOT . DS . APPLICATION_PATH . DS . 'Views' . DS . Params::$viewSubfolder . DS . ucwords($this->controller) . DS . $fileInt . '.php'))
{
$this->load($fileInt);
}