diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2013-01-14 21:39:49 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2013-01-14 21:39:49 +0100 |
commit | eab6d7eb23f66ac4a662a036336b292138e4484c (patch) | |
tree | b41d27609f143b4b99a7f22b70c2b42068941564 /settings | |
parent | 0810d80f8a0f8611ed6f7befd4442ceb9b061781 (diff) | |
download | nextcloud-server-eab6d7eb23f66ac4a662a036336b292138e4484c.tar.gz nextcloud-server-eab6d7eb23f66ac4a662a036336b292138e4484c.zip |
Enhanced auth is totally unmaintained and broken
Let's remove it, it's also not secure anymore with the introduction of
our API etc...
(And doesn't work with ldap etc…)
Diffstat (limited to 'settings')
-rw-r--r-- | settings/ajax/changepassword.php | 4 | ||||
-rw-r--r-- | settings/settings.php | 1 |
2 files changed, 0 insertions, 5 deletions
diff --git a/settings/ajax/changepassword.php b/settings/ajax/changepassword.php index aed000f7f24..8d45e62e4d8 100644 --- a/settings/ajax/changepassword.php +++ b/settings/ajax/changepassword.php @@ -30,10 +30,6 @@ if(is_null($userstatus)) { exit(); } -if($userstatus === 'admin' || $userstatus === 'subadmin') { - OC_JSON::verifyUser(); -} - // Return Success story if( OC_User::setPassword( $username, $password )) { OC_JSON::success(array("data" => array( "username" => $username ))); diff --git a/settings/settings.php b/settings/settings.php index add94b5b011..1e05452ec4d 100644 --- a/settings/settings.php +++ b/settings/settings.php @@ -6,7 +6,6 @@ */ OC_Util::checkLoggedIn(); -OC_Util::verifyUser(); OC_App::loadApps(); OC_Util::addStyle( 'settings', 'settings' ); |