summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2010-09-06 10:03:51 -0400
committerEvan Prodromou <evan@status.net>2010-09-06 10:03:51 -0400
commite42d2124a319e72f949fa354cc75252f32a5a6c5 (patch)
treecab688c9121c74f81e9edc17d85b19e209665d98 /plugins
parentc2de44a53042a30a1bf8e7e9384d2641c2004313 (diff)
common_keyize() -> Cache::keyize()
Diffstat (limited to 'plugins')
-rw-r--r--plugins/GeonamesPlugin.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/GeonamesPlugin.php b/plugins/GeonamesPlugin.php
index c81fb4677..dd882715b 100644
--- a/plugins/GeonamesPlugin.php
+++ b/plugins/GeonamesPlugin.php
@@ -416,7 +416,7 @@ class GeonamesPlugin extends Plugin
{
$key = 'geonames:' .
implode(',', array_keys($attrs)) . ':'.
- common_keyize(implode(',', array_values($attrs)));
+ Cache::keyize(implode(',', array_values($attrs)));
if ($this->cachePrefix) {
return $this->cachePrefix . ':' . $key;
} else {