diff options
author | thomascube <thomas@roundcube.net> | 2008-03-03 21:32:15 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-03-03 21:32:15 +0000 |
commit | 807d17a4bedae6d2ebc2eda3236fe1740422b3ba (patch) | |
tree | b9e49a1e1570418c420c253b9d1e0c1d5f484b49 /installer/rcube_install.php | |
parent | faebf41a82658efdb6c023e7c738aa024e9a07be (diff) |
Make rcube_install class PHP4 compatible + add warning for MDB2 on PHP4 + set MDB2 as default
Diffstat (limited to 'installer/rcube_install.php')
-rw-r--r-- | installer/rcube_install.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/installer/rcube_install.php b/installer/rcube_install.php index 79d003cdf..8caa79d02 100644 --- a/installer/rcube_install.php +++ b/installer/rcube_install.php @@ -103,7 +103,7 @@ class rcube_install $value = $this->is_post && (isset($_POST["_$name"]) || $this->config_props[$name]) ? $_POST["_$name"] : $this->config[$name]; if ($name == 'des_key' && !isset($_REQUEST["_$name"])) - $value = self::random_key(24); + $value = rcube_install::random_key(24); return $value !== null && $value !== '' ? $value : $default; } @@ -143,7 +143,7 @@ class rcube_install $value = ''; } else if ($prop == 'default_host' && is_array($value)) { - $value = self::_clean_array($value); + $value = rcube_install::_clean_array($value); if (count($value) <= 1) $value = $value[0]; } |