diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2012-10-16 00:47:22 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2012-10-16 00:47:38 +0200 |
commit | f4142bd2a8508577ca0abc1f6d84b59dc6de26e5 (patch) | |
tree | 8b57b7a31fed19b933d3184ea357b4fed8273855 /settings | |
parent | 77e18b01ba19d8573b3d5360d492e2f0b5d1d391 (diff) | |
download | nextcloud-server-f4142bd2a8508577ca0abc1f6d84b59dc6de26e5.tar.gz nextcloud-server-f4142bd2a8508577ca0abc1f6d84b59dc6de26e5.zip |
Move isUserVerified to OC_Util
Diffstat (limited to 'settings')
-rw-r--r-- | settings/ajax/changepassword.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/ajax/changepassword.php b/settings/ajax/changepassword.php index 822a95c1bc2..12d3b67037a 100644 --- a/settings/ajax/changepassword.php +++ b/settings/ajax/changepassword.php @@ -23,7 +23,7 @@ if(OC_User::getUser() === $username) { { $userstatus = 'user'; } else { - if (!OC_JSON::isUserVerified()) { + if (!OC_Util::isUserVerified()) { $userstatus = null; } } |