diff options
Diffstat (limited to 'h-source/Application')
6 files changed, 6 insertions, 6 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); } diff --git a/h-source/Application/Views/Desktop/Credits/index.php b/h-source/Application/Views/Desktop/Credits/index.php index 01bcc91..7a426d8 100644 --- a/h-source/Application/Views/Desktop/Credits/index.php +++ b/h-source/Application/Views/Desktop/Credits/index.php @@ -41,7 +41,7 @@ </div> <div class="credits_item_description"> - The <a href="http://jquery.com/">jQuery</a> and the <a href="http://jqueryui.com/home">jQuery UI</a> javascript libraries (licensed under MIT/GPL) have been used through the website + The <a href="http://jquery.com/">jQuery</a>, the <a href="http://jqueryui.com/home">jQuery UI</a> and the <a href="http://jquerymobile.com/">jQuery Mobile</a> javascript libraries (licensed under MIT/GPL) have been used through the website </div> <div class="credits_item_title"> diff --git a/h-source/Application/Views/Desktop/Credits/index_es.php b/h-source/Application/Views/Desktop/Credits/index_es.php index 8de3316..d3d349e 100644 --- a/h-source/Application/Views/Desktop/Credits/index_es.php +++ b/h-source/Application/Views/Desktop/Credits/index_es.php @@ -41,7 +41,7 @@ </div> <div class="credits_item_description"> - Las bibliotecas javascript <a href="http://jquery.com/">jQuery</a> y <a href="http://jqueryui.com/home">jQuery UI</a> (licenciadas bajo MIT/GPL) han sido usadas en el sitio + Las bibliotecas javascript <a href="http://jquery.com/">jQuery</a>, <a href="http://jqueryui.com/home">jQuery UI</a> y <a href="http://jquerymobile.com/">jQuery Mobile</a> (licenciadas bajo MIT/GPL) han sido usadas en el sitio </div> <div class="credits_item_title"> diff --git a/h-source/Application/Views/Desktop/Credits/index_fr.php b/h-source/Application/Views/Desktop/Credits/index_fr.php index 62998f1..d3276d2 100644 --- a/h-source/Application/Views/Desktop/Credits/index_fr.php +++ b/h-source/Application/Views/Desktop/Credits/index_fr.php @@ -39,7 +39,7 @@ </div> <div class="credits_item_description"> - <a href="http://jquery.com/">jQuery</a> et la librairie javascript <a href="http://jqueryui.com/home">jQuery UI</a> (licensé sous MIT/GPL) sont utilisés sur le site. + <a href="http://jquery.com/">jQuery</a> , <a href="http://jqueryui.com/home">jQuery UI</a> et la librairie javascript <a href="http://jquerymobile.com/">jQuery Mobile</a> (licensé sous MIT/GPL) sont utilisés sur le site. </div> <div class="credits_item_title"> diff --git a/h-source/Application/Views/Desktop/Credits/index_it.php b/h-source/Application/Views/Desktop/Credits/index_it.php index a142942..dcdb2c2 100644 --- a/h-source/Application/Views/Desktop/Credits/index_it.php +++ b/h-source/Application/Views/Desktop/Credits/index_it.php @@ -42,7 +42,7 @@ </div> <div class="credits_item_description"> - Le librerie javascript <a href="http://jquery.com/">jQuery</a> e <a href="http://jqueryui.com/home">jQuery UI</a> (sotto licenza MIT/GPL) sono state usate nel sito + Le librerie javascript <a href="http://jquery.com/">jQuery</a> , <a href="http://jqueryui.com/home">jQuery UI</a> e <a href="http://jquerymobile.com/">jQuery Mobile</a> (sotto licenza MIT/GPL) sono state usate nel sito </div> <div class="credits_item_title"> diff --git a/h-source/Application/Views/Desktop/header.php b/h-source/Application/Views/Desktop/header.php index 8d5e681..b283a10 100644 --- a/h-source/Application/Views/Desktop/header.php +++ b/h-source/Application/Views/Desktop/header.php @@ -40,7 +40,7 @@ $currPos = $querySanitized ? $this->controller."/".$this->action : 'home/index'; <link rel="stylesheet" type="text/css" href="<?php echo $this->baseUrl;?>/Public/Css/explorer7.css"> <![endif]--> - <script type="text/javascript" src="<?php echo $this->baseUrl;?>/Public/Js/jquery/jquery-1.4.2.min.js"></script> + <script type="text/javascript" src="<?php echo $this->baseUrl;?>/Public/Js/jquery/jquery-1.7.1.min.js"></script> <script type="text/javascript" src="<?php echo $this->baseUrl;?>/Public/Js/functions.js"></script> <!--markitup--> |