summaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
authorCraig Andrews <candrews@integralblue.com>2010-03-22 14:22:18 -0400
committerCraig Andrews <candrews@integralblue.com>2010-03-22 14:22:18 -0400
commitc85228eadc60b50ed6e7c9cba596c3e66f5214b2 (patch)
treea324f3b0113e65e1106d55423c9faa6d96e2018a /classes
parent295e05ea39982ff2b41cec21d5622375005682c2 (diff)
blowSubscriberCount and blowSubscriptionCount - no 's'
Diffstat (limited to 'classes')
-rw-r--r--classes/Subscription.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/classes/Subscription.php b/classes/Subscription.php
index 60c12cccc..0679c0925 100644
--- a/classes/Subscription.php
+++ b/classes/Subscription.php
@@ -88,8 +88,8 @@ class Subscription extends Memcached_DataObject
self::blow('user:notices_with_friends:%d', $subscriber->id);
- $subscriber->blowSubscriptionsCount();
- $other->blowSubscribersCount();
+ $subscriber->blowSubscriptionCount();
+ $other->blowSubscriberCount();
$otherUser = User::staticGet('id', $other->id);
@@ -213,8 +213,8 @@ class Subscription extends Memcached_DataObject
self::blow('user:notices_with_friends:%d', $subscriber->id);
- $subscriber->blowSubscriptionsCount();
- $other->blowSubscribersCount();
+ $subscriber->blowSubscriptionCount();
+ $other->blowSubscriberCount();
Event::handle('EndUnsubscribe', array($subscriber, $other));
}