aboutsummaryrefslogtreecommitdiffstats
path: root/mod/setup.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-01-07 20:25:38 -0800
committerfriendica <info@friendica.com>2013-01-07 20:25:38 -0800
commit5cb8db64cfdcbf06244f151b7202e6d7ab1ed7d6 (patch)
tree108086b4a9d9eac318ca26f91e147b9ae520b2d6 /mod/setup.php
parentda188214c304cefaa6fe0a36e1f60932da2f3bfb (diff)
downloadvolse-hubzilla-5cb8db64cfdcbf06244f151b7202e6d7ab1ed7d6.tar.gz
volse-hubzilla-5cb8db64cfdcbf06244f151b7202e6d7ab1ed7d6.tar.bz2
volse-hubzilla-5cb8db64cfdcbf06244f151b7202e6d7ab1ed7d6.zip
bypass smarty for intletext templates
Diffstat (limited to 'mod/setup.php')
-rwxr-xr-xmod/setup.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/mod/setup.php b/mod/setup.php
index 4fa5152ea..4c1b7ec9b 100755
--- a/mod/setup.php
+++ b/mod/setup.php
@@ -78,6 +78,9 @@ function setup_post(&$a) {
// connect to db
$db = new dba($dbhost, $dbuser, $dbpass, $dbdata, true);
+ // disable smarty for this template
+ $engine = $a->get_template_engine();
+ $a->set_template_engine();
$tpl = get_intltext_template('htconfig.tpl');
$txt = replace_macros($tpl,array(
'$dbhost' => $dbhost,
@@ -90,6 +93,7 @@ function setup_post(&$a) {
'$phpath' => $phpath,
'$adminmail' => $adminmail
));
+ $a->set_template_engine($engine);
$result = file_put_contents('.htconfig.php', $txt);
if(! $result) {