]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
blowSubscriberCount and blowSubscriptionCount - no 's'
authorCraig Andrews <candrews@integralblue.com>
Mon, 22 Mar 2010 18:22:18 +0000 (14:22 -0400)
committerCraig Andrews <candrews@integralblue.com>
Mon, 22 Mar 2010 18:22:18 +0000 (14:22 -0400)
classes/Subscription.php

index 60c12cccc3d8d67545679355d2eb944e6e9f0612..0679c0925004bbdbb9410e3624fef8ff899a8774 100644 (file)
@@ -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));
         }