summaryrefslogtreecommitdiff
path: root/plugins/LdapCommon
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2010-09-06 10:07:43 -0400
committerEvan Prodromou <evan@status.net>2010-09-06 10:07:43 -0400
commita319b40c97c2fd6527eeb81d7d2f2d703756ef80 (patch)
tree19f849d8abddc24b609d33a5710efb97b37a972f /plugins/LdapCommon
parente42d2124a319e72f949fa354cc75252f32a5a6c5 (diff)
common_cache_key() -> Cache::key()
Diffstat (limited to 'plugins/LdapCommon')
-rw-r--r--plugins/LdapCommon/LdapCommon.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/LdapCommon/LdapCommon.php b/plugins/LdapCommon/LdapCommon.php
index f53660a4c..d583e3085 100644
--- a/plugins/LdapCommon/LdapCommon.php
+++ b/plugins/LdapCommon/LdapCommon.php
@@ -130,7 +130,7 @@ class LdapCommon
if (!empty($c)) {
$cacheObj = new MemcacheSchemaCache(
array('c'=>$c,
- 'cacheKey' => common_cache_key('ldap_schema:' . $config_id)));
+ 'cacheKey' => Cache::key('ldap_schema:' . $config_id)));
$ldap->registerSchemaCache($cacheObj);
}
self::$ldap_connections[$config_id] = $ldap;