remove autocomplete and use autosuggest instead
[phpfspot.git] / phpfspot_tmpl.php
index 996ff443d0a17076d8cb8251e933d6e9b282be30..52c983e971aedd400487a372701eb678e7187e5d 100644 (file)
@@ -21,8 +21,6 @@
  *
  ***************************************************************************/
 
-require 'smarty/libs/Smarty.class.php';
-
 class PHPFSPOT_TMPL extends Smarty {
 
    var $parent;
@@ -40,6 +38,9 @@ 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');
+
    } // __construct()
 
    public function show($template)