mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-21 02:18:28 +02: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);
|
return json_decode($str, true);
|
||||||
}
|
}
|
||||||
// handling of not serialized strings
|
// handling of not serialized strings
|
||||||
if ($str[0] != 'a' && $str[1] != ':')
|
if ($str[0] != 'a' || $str[1] != ':')
|
||||||
{
|
{
|
||||||
return $str;
|
return $str;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user