use a CRC32 of the plugin names rather than actual names

This commit is contained in:
Evan Prodromou 2010-11-30 10:11:39 -05:00
parent 02da858cef
commit 8c993a502c

View File

@ -164,8 +164,12 @@ class Router
$names = array_unique($names); $names = array_unique($names);
asort($names); asort($names);
// Unique enough.
return Cache::key('router:'.STATUSNET_VERSION.':'.implode(',', $names)); $uniq = crc32(implode(',', $names));
return Cache::key('router:'.STATUSNET_VERSION.':'.$uniq);
} }
function initialize() function initialize()