summaryrefslogtreecommitdiff
path: root/install.php
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-12-19 11:25:47 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-12-19 11:25:47 +0000
commitefb2419db30f930e6358a4c1ff40bca39866e5fe (patch)
treee0a9d3718b554368df9523e08f4aecd180313afb /install.php
parent1ee3efdf5507343bf84e45255d0a9173d1bebb91 (diff)
downloadbrdo-efb2419db30f930e6358a4c1ff40bca39866e5fe.tar.gz
brdo-efb2419db30f930e6358a4c1ff40bca39866e5fe.tar.bz2
#194494 by blackdog: fix two noticed on install when password is not provided
Diffstat (limited to 'install.php')
-rw-r--r--install.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/install.php b/install.php
index 65fc3903f..98df16bb4 100644
--- a/install.php
+++ b/install.php
@@ -155,7 +155,7 @@ function install_verify_settings() {
$url = parse_url(is_array($db_url) ? $db_url['default'] : $db_url);
$db_user = urldecode($url['user']);
- $db_pass = urldecode($url['pass']);
+ $db_pass = isset($url['pass']) ? urldecode($url['pass']) : NULL;
$db_host = urldecode($url['host']);
$db_port = isset($url['port']) ? urldecode($url['port']) : '';
$db_path = ltrim(urldecode($url['path']), '/');