Skip to content
Unverified Commit 43175082 authored by Roeland Jago Douma's avatar Roeland Jago Douma
Browse files

Store setUserValue as string in cache



We cache the values we set in the setUserValue function.
However since the values are strings in the database we check if a value
is equal with string comparison

Now if the function was called with a $value of int or float. It would
be stored in the DB (and thus converted to string) and in the cache (not
converted thus as int/float).

Now if another call comes in that sets it to the same value (I'm looking
at you LDAP!). The check would fail since we would be comparing
int/float to string which fails by definition.

Signed-off-by: default avatarRoeland Jago Douma <roeland@famdouma.nl>
parent 9834f33d
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment