From efff9beb2d7aecfaf0713e9f423cb7437ecd28cb Mon Sep 17 00:00:00 2001 From: Kevin Chabowski Date: Thu, 25 Aug 2011 23:01:12 +0200 Subject: Changed smarty template delimiters to {% and %} --- ratatoeskr/sys/load_smarty.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ratatoeskr/sys/load_smarty.php b/ratatoeskr/sys/load_smarty.php index 574f3c9..43df957 100644 --- a/ratatoeskr/sys/load_smarty.php +++ b/ratatoeskr/sys/load_smarty.php @@ -23,6 +23,8 @@ if(!isset($smarty)) $smarty->setCompileDir(dirname(__FILE__) . "/../tmp/smartytemplates_c"); $smarty->setCacheDir(dirname(__FILE__) . "/../tmp/smarty/cache"); $smarty->setConfigDir(dirname(__FILE__) . "/../smarty_confdir"); + $smarty->left_delimiter = "{%"; + $smarty->right_delimiter = "%}"; } ?> -- cgit v1.2.3-54-g00ecf