diff --git a/lib/templating/smartytemplate.inc.php b/lib/templating/smartytemplate.inc.php index 2054f15..015262b 100644 --- a/lib/templating/smartytemplate.inc.php +++ b/lib/templating/smartytemplate.inc.php @@ -38,6 +38,8 @@ class KTSmartyTemplate extends KTTemplate { foreach ($aDict as $k => $v) { $smarty->assign($k, $v); } + $KTConfig =& KTConfig::getSingleton(); + $smarty->assign("config", $KTConfig); $smarty->caching = false; return $smarty->fetch($this->sPath); }