]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/cache.php
Introduced common_location_shared() to check if location sharing is always,
[quix0rs-gnu-social.git] / lib / cache.php
index 59110f74d845f1a425ffbcdbca7cab44a9a75c2f..104314cb06b24aee08eb3688b12dd9e7af6c4bce 100644 (file)
@@ -95,7 +95,7 @@ class Cache
             $base_key = self::keyize(common_config('site', 'name'));
         }
 
-        return 'statusnet:' . $base_key . ':' . $extra;
+        return 'gnusocial:' . $base_key . ':' . $extra;
     }
 
     /**
@@ -125,14 +125,12 @@ class Cache
        
         if (empty($prefix)) {
            
-            $plugins     = StatusNet::getActivePlugins();
-            $names       = array();
+            $names   = array();
            
-            foreach ($plugins as $plugin) {
-                $names[] = $plugin[0];
+            foreach (GNUsocial::getActivePlugins() as $plugin=>$attrs) {
+                $names[] = $plugin;
             }
            
-            $names = array_unique($names);
             asort($names);
            
             // Unique enough.
@@ -141,7 +139,7 @@ class Cache
 
             $build = common_config('site', 'build');
 
-            $prefix = STATUSNET_VERSION.':'.$build.':'.$uniq;
+            $prefix = GNUSOCIAL_VERSION.':'.$build.':'.$uniq;
         }
        
         return Cache::key($prefix.':'.$extra);