X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=phpfspot.git;a=blobdiff_plain;f=phpfspot_tmpl.php;h=3fdf2ac2626df5c356bab3aefc5443400f3b69a8;hp=996ff443d0a17076d8cb8251e933d6e9b282be30;hb=5a118f1db16afd22cb3c066f07cc6333fa0f96b6;hpb=75a329ec022ef21019afb17aecf776a10083e0cb;ds=sidebyside diff --git a/phpfspot_tmpl.php b/phpfspot_tmpl.php index 996ff44..3fdf2ac 100644 --- a/phpfspot_tmpl.php +++ b/phpfspot_tmpl.php @@ -21,8 +21,6 @@ * ***************************************************************************/ -require 'smarty/libs/Smarty.class.php'; - class PHPFSPOT_TMPL extends Smarty { var $parent; @@ -40,6 +38,11 @@ class PHPFSPOT_TMPL extends Smarty { $this->config_dir = $parent->cfg->base_path .'/smarty_config'; $this->cache_dir = $parent->cfg->base_path .'/smarty_cache'; + if(isset($parent->cfg->use_lightbox) && $parent->cfg->use_lightbox == true) + $this->assign('use_lightbox', 'true'); + if(isset($parent->cfg->use_autocomplete) && $parent->cfg->use_autocomplete == true) + $this->assign('use_autocomplete', 'true'); + } // __construct() public function show($template)