diff options
author | sidey79 <s.butzek@gmx.de> | 2017-08-08 21:10:46 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2017-11-10 17:07:41 +0100 |
commit | 039f6c9636cf57d6206fce8c157f4fac0d03e406 (patch) | |
tree | ae95fa2e70eef375d7b8a85dc91c8f1938bfbb22 /apps/user_ldap/lib | |
parent | 0b290c090480c81cd7ee7209489aaacc1cefb38f (diff) | |
download | nextcloud-server-039f6c9636cf57d6206fce8c157f4fac0d03e406.tar.gz nextcloud-server-039f6c9636cf57d6206fce8c157f4fac0d03e406.zip |
Fixed Typo in user.php
Fixed a typo for the app config prameter updateAttributesInterval
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps/user_ldap/lib')
-rw-r--r-- | apps/user_ldap/lib/User/User.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/User/User.php b/apps/user_ldap/lib/User/User.php index a295e7fe6f2..2ad395275d2 100644 --- a/apps/user_ldap/lib/User/User.php +++ b/apps/user_ldap/lib/User/User.php @@ -387,7 +387,7 @@ class User { $lastChecked = $this->config->getUserValue($this->uid, 'user_ldap', self::USER_PREFKEY_LASTREFRESH, 0); - if((time() - intval($lastChecked)) < $this->config->getAppValue('user_ldap', 'updateAttribuesInterval', 86400) ) { + if((time() - intval($lastChecked)) < $this->config->getAppValue('user_ldap', 'updateAttributesInterval', 86400) ) { return false; } return true; |