diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2008-03-29 07:55:25 +0100 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2008-03-29 07:55:25 +0100 |
commit | c3342635f7c4d0408648ffbb31e4041d93ee4888 (patch) | |
tree | eeeeb194796dacdc7088f913f85211d1721ac9df /phpfspot_tmpl.php | |
parent | 8ab8f2cd84b981d1ae7272a05cd087a5f4924149 (diff) |
issue111, auto-completion can now be enabled/disabled via config option
Signed-off-by: Andreas Unterkircher <unki@netshadow.at>
Diffstat (limited to 'phpfspot_tmpl.php')
-rw-r--r-- | phpfspot_tmpl.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/phpfspot_tmpl.php b/phpfspot_tmpl.php index 52c983e..3fdf2ac 100644 --- a/phpfspot_tmpl.php +++ b/phpfspot_tmpl.php @@ -40,6 +40,8 @@ class PHPFSPOT_TMPL extends Smarty { 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() |