From: Craig Andrews Date: Mon, 22 Mar 2010 18:22:18 +0000 (-0400) Subject: blowSubscriberCount and blowSubscriptionCount - no 's' X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c85228eadc60b50ed6e7c9cba596c3e66f5214b2;p=quix0rs-gnu-social.git blowSubscriberCount and blowSubscriptionCount - no 's' --- diff --git a/classes/Subscription.php b/classes/Subscription.php index 60c12cccc3..0679c09250 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)); }