summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap/lib/user/offlineuser.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/user_ldap/lib/user/offlineuser.php')
-rw-r--r--apps/user_ldap/lib/user/offlineuser.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/user_ldap/lib/user/offlineuser.php b/apps/user_ldap/lib/user/offlineuser.php
index 7cf48bc05b1..9383320fae2 100644
--- a/apps/user_ldap/lib/user/offlineuser.php
+++ b/apps/user_ldap/lib/user/offlineuser.php
@@ -59,9 +59,9 @@ class OfflineUser {
*/
protected $hasActiveShares;
/**
- * @var \OC\Preferences $preferences
+ * @var \OCP\IConfig $config
*/
- protected $preferences;
+ protected $config;
/**
* @var \OCP\IDBConnection $db
*/
@@ -71,9 +71,9 @@ class OfflineUser {
*/
protected $mapping;
- public function __construct($ocName, \OC\Preferences $preferences, \OCP\IDBConnection $db, UserMapping $mapping) {
+ public function __construct($ocName, \OCP\IConfig $config, \OCP\IDBConnection $db, UserMapping $mapping) {
$this->ocName = $ocName;
- $this->preferences = $preferences;
+ $this->config = $config;
$this->db = $db;
$this->mapping = $mapping;
$this->fetchDetails();
@@ -173,7 +173,7 @@ class OfflineUser {
'lastLogin' => 'login'
);
foreach($properties as $property => $app) {
- $this->$property = $this->preferences->getValue($this->ocName, $app, $property, '');
+ $this->$property = $this->config->getUserValue($this->ocName, $app, $property, '');
}
$dn = $this->mapping->getDNByName($this->ocName);