diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-09-21 12:50:15 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-09-21 12:50:15 +0000 |
| commit | e201e1711d9e904e4119694808136bc3973dd71a (patch) | |
| tree | 73dd2da4140efc14d90f8ba46fdaa99da2aa9a82 /roundcubemail/installer/rcube_install.php | |
| parent | cb3ad1ce49b485360ddfd36ef59be44b762c748a (diff) | |
Apply changes of installer script to trunk
git-svn-id: https://svn.roundcube.net/trunk@1877 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/installer/rcube_install.php')
| -rw-r--r-- | roundcubemail/installer/rcube_install.php | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/roundcubemail/installer/rcube_install.php b/roundcubemail/installer/rcube_install.php index e528cfc1f..37645adbc 100644 --- a/roundcubemail/installer/rcube_install.php +++ b/roundcubemail/installer/rcube_install.php @@ -129,18 +129,17 @@ class rcube_install // convert some form data if ($prop == 'debug_level') { $val = 0; - if (isset($value)) - foreach ($value as $dbgval) + if (is_array($value)) + foreach ($value as $dbgval) $val += intval($dbgval); - $value = $val; + $value = $val; } else if ($which == 'db' && $prop == 'db_dsnw' && !empty($_POST['_dbtype'])) { if ($_POST['_dbtype'] == 'sqlite') $value = sprintf('%s://%s?mode=0646', $_POST['_dbtype'], $_POST['_dbname']{0} == '/' ? '/' . $_POST['_dbname'] : $_POST['_dbname']); else $value = sprintf('%s://%s:%s@%s/%s', $_POST['_dbtype'], - rawurlencode($_POST['_dbuser']), rawurlencode($_POST['_dbpass']), - $_POST['_dbhost'], $_POST['_dbname']); + rawurlencode($_POST['_dbuser']), rawurlencode($_POST['_dbpass']), $_POST['_dbhost'], $_POST['_dbname']); } else if ($prop == 'smtp_auth_type' && $value == '0') { $value = ''; |
