]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
better stats
authorEvan Prodromou <evan@prodromou.name>
Mon, 19 May 2008 14:28:07 +0000 (10:28 -0400)
committerEvan Prodromou <evan@prodromou.name>
Mon, 19 May 2008 14:28:07 +0000 (10:28 -0400)
darcs-hash:20080519142807-84dde-0d9a0a3d70e935a0264215fa1c18082d78057e36.gz

actions/showstream.php

index f64af63ec14ce9d884522298db7e18f697f178a5..d40b8158104ebf3405f7d137325135d0059cf608 100644 (file)
@@ -167,7 +167,7 @@ class ShowstreamAction extends StreamAction {
                                $avatar = $subs->getAvatar(AVATAR_MINI_SIZE);
                                common_element('img', array('src' => (($avatar) ? $avatar->url : DEFAULT_MINI_AVATAR),
                                                                                        'width' => AVATAR_MINI_SIZE,
-                                                                               'height' => AVATAR_MINI_SIZE,
+                                                                                       'height' => AVATAR_MINI_SIZE,
                                                                                        'class' => 'avatar mini'));
                                common_element_end('a');
 
@@ -194,7 +194,8 @@ class ShowstreamAction extends StreamAction {
                // XXX: WORM cache this
                $subs = DB_DataObject::factory('subscription');
                $subs->subscriber = $profile->id;
-               $subs_count = $subs->count();
+               $subs->whereAdd("subscriber=".$profile->id);
+               $subs_count = $subs->count(DB_DATAOBJECT_WHEREADD_ONLY);
 
                if (!$subs_count) {
                        $subs_count = 0;
@@ -202,7 +203,8 @@ class ShowstreamAction extends StreamAction {
 
                $subbed = DB_DataObject::factory('subscription');
                $subbed->subscribed = $profile->id;
-               $subbed_count = $subbed->count();
+               $subbed->whereAdd("subscribed=".$profile->id);
+               $subbed_count = $subbed->count(DB_DATAOBJECT_WHEREADD_ONLY);
 
                if (!$subbed_count) {
                        $subbed_count = 0;