diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2012-10-22 23:04:39 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2012-10-22 23:04:39 +0200 |
commit | 65619af05b9625ee9c0a6c38bffe5da14c1c90bd (patch) | |
tree | 8fb861928c2101dcf16c6615cd37ff950780140b /lib/json.php | |
parent | b879cd709ef448ad13c5eb2b06ff75e676a1b6c3 (diff) | |
download | nextcloud-server-65619af05b9625ee9c0a6c38bffe5da14c1c90bd.tar.gz nextcloud-server-65619af05b9625ee9c0a6c38bffe5da14c1c90bd.zip |
Disable enhancedauth by default
Admins can still enable it via config.php
Diffstat (limited to 'lib/json.php')
-rw-r--r-- | lib/json.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/json.php b/lib/json.php index cc504907261..cc6cee6caff 100644 --- a/lib/json.php +++ b/lib/json.php @@ -83,7 +83,7 @@ class OC_JSON{ * Check if the user verified the login with his password */ public static function verifyUser() { - if(OC_Config::getValue('enhancedauth', true) === true) { + if(OC_Config::getValue('enhancedauth', false) === true) { if(!isset($_SESSION['verifiedLogin']) OR $_SESSION['verifiedLogin'] < time()) { $l = OC_L10N::get('lib'); self::error(array( 'data' => array( 'message' => $l->t('Authentication error') ))); |