diff options
author | friendica <info@friendica.com> | 2012-08-20 06:34:54 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-08-20 06:34:54 -0700 |
commit | 2f81fb438508436ad6424c53f0f2dc878969b929 (patch) | |
tree | b866c8a6b4c917af19c49c1067c1e5c1c1975f3c /mod/install.php | |
parent | 34e42c4cb34c78d9cb8ac48e9d80e58984346156 (diff) | |
download | volse-hubzilla-2f81fb438508436ad6424c53f0f2dc878969b929.tar.gz volse-hubzilla-2f81fb438508436ad6424c53f0f2dc878969b929.tar.bz2 volse-hubzilla-2f81fb438508436ad6424c53f0f2dc878969b929.zip |
upstream fixes
Diffstat (limited to 'mod/install.php')
-rwxr-xr-x | mod/install.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/install.php b/mod/install.php index cb21a71eb..4e4631b85 100755 --- a/mod/install.php +++ b/mod/install.php @@ -60,7 +60,7 @@ function install_post(&$a) { return; break; - case 4; + case 4: $urlpath = $a->get_path(); $dbhost = notags(trim($_POST['dbhost'])); $dbuser = notags(trim($_POST['dbuser'])); @@ -155,11 +155,11 @@ function install_content(&$a) { } if(x($a->data,'txt') && strlen($a->data['txt'])) { - $tpl = get_markup_template('install.tpl'); $db_return_text .= manual_config($a); } if ($db_return_text!="") { + $tpl = get_markup_template('install.tpl'); return replace_macros($tpl, array( '$title' => $install_title, '$pass' => "", |