aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Chabowski <kevin@kch42.de>2011-08-25 23:01:12 +0200
committerKevin Chabowski <kevin@kch42.de>2011-08-25 23:01:12 +0200
commitefff9beb2d7aecfaf0713e9f423cb7437ecd28cb (patch)
tree8d3c5c69e089efbe9c7f427a9e212345dbf904c8
parent04241a5ccbf839dee953d7e47c894d5c8141f7ee (diff)
downloadratatoeskr-cms-efff9beb2d7aecfaf0713e9f423cb7437ecd28cb.tar.gz
ratatoeskr-cms-efff9beb2d7aecfaf0713e9f423cb7437ecd28cb.tar.bz2
ratatoeskr-cms-efff9beb2d7aecfaf0713e9f423cb7437ecd28cb.zip
Changed smarty template delimiters to {% and %}
-rw-r--r--ratatoeskr/sys/load_smarty.php2
1 files changed, 2 insertions, 0 deletions
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 = "%}";
}
?>