mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 04:29:28 +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
597b0ff2e2
commit
007f2f75aa
@ -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…
Reference in New Issue
Block a user