mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-21 23:43:17 +01:00
* API: fixed broken configuration, causing eg. ActiveDirectory or LDAP authentication to fail (you need to run Setup >> Clear cache!)
all config vars with names starting with an "a" were returning false instead there correct value
This commit is contained in:
parent
2dd0625ebe
commit
6b0ed9111f
@ -309,7 +309,7 @@ class config
|
||||
return json_decode($str, true);
|
||||
}
|
||||
// handling of not serialized strings
|
||||
if ($str[0] != 'a' && $str[1] != ':')
|
||||
if ($str[0] != 'a' || $str[1] != ':')
|
||||
{
|
||||
return $str;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user