forked from extern/egroupware
cant use @-syntax with passwords, as they can start with an @
This commit is contained in:
parent
223918a192
commit
283b8bec33
@ -347,7 +347,7 @@ class egw_db
|
|||||||
{
|
{
|
||||||
$this->Type = $GLOBALS['egw_info']['server']['db_type'];
|
$this->Type = $GLOBALS['egw_info']['server']['db_type'];
|
||||||
}
|
}
|
||||||
foreach(array('Database', 'Host', 'Port', 'User', 'Password', 'Type') as $var)
|
foreach(array('Database', 'Host', 'Port', 'User', 'Type') as $var)
|
||||||
{
|
{
|
||||||
$val = (string)$this->$var;
|
$val = (string)$this->$var;
|
||||||
if ($val[0] === '@') $this->$var = getenv(substr($val, 1));
|
if ($val[0] === '@') $this->$var = getenv(substr($val, 1));
|
||||||
|
Loading…
Reference in New Issue
Block a user