diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-05-12 16:23:33 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-05-12 16:23:33 +0200 |
commit | 33987eea8302e5b8f7889c934debdc2b9dd0296c (patch) | |
tree | 80fc32df1d93940ad4c56b5ec078536cb1ddcf37 /apps/user_ldap/lib/connection.php | |
parent | 4dd1a49a686462bc846e10623e97611ef171a731 (diff) | |
download | nextcloud-server-33987eea8302e5b8f7889c934debdc2b9dd0296c.tar.gz nextcloud-server-33987eea8302e5b8f7889c934debdc2b9dd0296c.zip |
remove legacy aka deprecated code: OC_Cache
Diffstat (limited to 'apps/user_ldap/lib/connection.php')
-rw-r--r-- | apps/user_ldap/lib/connection.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/connection.php b/apps/user_ldap/lib/connection.php index 173c4ebcc23..1ac803d374d 100644 --- a/apps/user_ldap/lib/connection.php +++ b/apps/user_ldap/lib/connection.php @@ -56,7 +56,7 @@ class Connection extends LDAPUtility { if($memcache->isAvailable()) { $this->cache = $memcache->create(); } else { - $this->cache = \OC_Cache::getGlobalCache(); + $this->cache = \OC\Cache::getGlobalCache(); } $this->hasPagedResultSupport = $this->ldap->hasPagedResultSupport(); |