From 039f6c9636cf57d6206fce8c157f4fac0d03e406 Mon Sep 17 00:00:00 2001 From: sidey79 Date: Tue, 8 Aug 2017 21:10:46 +0200 Subject: Fixed Typo in user.php Fixed a typo for the app config prameter updateAttributesInterval Signed-off-by: Arthur Schiwon --- apps/user_ldap/lib/User/User.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/user_ldap/lib') 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; -- cgit v1.2.3