summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2010-12-06 17:28:22 -0500
committerEvan Prodromou <evan@status.net>2010-12-06 17:28:22 -0500
commit1fb506c27d8d3cd076d0cab8d6b9493cc131e730 (patch)
treecdb34cda0bc3f291e557b3fc0970335482e93785
parent25f644f4b99bc9fed024821c94885100c105d6a2 (diff)
use codeKey() in activity caching
-rw-r--r--classes/Notice.php4
-rw-r--r--lib/activity.php4
2 files changed, 4 insertions, 4 deletions
diff --git a/classes/Notice.php b/classes/Notice.php
index 46e1dca35..d6710c3e2 100644
--- a/classes/Notice.php
+++ b/classes/Notice.php
@@ -1236,7 +1236,7 @@ class Notice extends Memcached_DataObject
function asActivity($cur = null, $source = false)
{
- $act = self::cacheGet('notice:as-activity:'.$this->id);
+ $act = self::cacheGet(Cache::codeKey('notice:as-activity:'.$this->id));
if (!empty($act)) {
return $act;
@@ -1406,7 +1406,7 @@ class Notice extends Memcached_DataObject
Event::handle('EndNoticeAsActivity', array($this, &$act));
}
- self::cacheSet('notice:as-activity:'.$this->id, $act);
+ self::cacheSet(Cache::codeKey('notice:as-activity:'.$this->id), $act);
return $act;
}
diff --git a/lib/activity.php b/lib/activity.php
index 712800817..d3eeadcee 100644
--- a/lib/activity.php
+++ b/lib/activity.php
@@ -331,7 +331,7 @@ class Activity
{
$c = Cache::instance();
- $str = $c->get('activity:as-string:'.Cache::keyize($this->id));
+ $str = $c->get(Cache::codeKey('activity:as-string:'.$this->id));
if (!empty($str)) {
return $str;
@@ -559,7 +559,7 @@ class Activity
$str = $xs->getString();
- $c->set('activity:as-string:'.Cache::keyize($this->id), $str);
+ $c->set(Cache::codeKey('activity:as-string:'.$this->id), $str);
return $str;
}