X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fcache.php;h=104314cb06b24aee08eb3688b12dd9e7af6c4bce;hb=3290227b50582ed29790f0bb10210362ca2f4093;hp=e087c2e6461d532a491fe4094054aed038f5b5d8;hpb=f110fc5c9a61ac666d88714b170b12f99d911b11;p=quix0rs-gnu-social.git diff --git a/lib/cache.php b/lib/cache.php index e087c2e646..104314cb06 100644 --- a/lib/cache.php +++ b/lib/cache.php @@ -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.