diff options
author | Craig Andrews <candrews@integralblue.com> | 2010-03-22 14:22:18 -0400 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2010-03-22 14:22:18 -0400 |
commit | c85228eadc60b50ed6e7c9cba596c3e66f5214b2 (patch) | |
tree | a324f3b0113e65e1106d55423c9faa6d96e2018a | |
parent | 295e05ea39982ff2b41cec21d5622375005682c2 (diff) |
blowSubscriberCount and blowSubscriptionCount - no 's'
-rw-r--r-- | classes/Subscription.php | 8 |
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)); } |