diff options
author | Evan Prodromou <evan@status.net> | 2010-09-06 10:03:51 -0400 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-09-06 10:03:51 -0400 |
commit | e42d2124a319e72f949fa354cc75252f32a5a6c5 (patch) | |
tree | cab688c9121c74f81e9edc17d85b19e209665d98 /plugins/GeonamesPlugin.php | |
parent | c2de44a53042a30a1bf8e7e9384d2641c2004313 (diff) |
common_keyize() -> Cache::keyize()
Diffstat (limited to 'plugins/GeonamesPlugin.php')
-rw-r--r-- | plugins/GeonamesPlugin.php | 2 |
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 { |