]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Change loop limit for minilist
authorEvan Prodromou <evan@controlyourself.ca>
Wed, 21 Jan 2009 18:32:10 +0000 (13:32 -0500)
committerEvan Prodromou <evan@controlyourself.ca>
Wed, 21 Jan 2009 18:32:10 +0000 (13:32 -0500)
lib/profileminilist.php

index f6f109c9278490e82fe0358f5ddd4af76cfc79fe..c6970f808869110eac55b2b50ee0c3e8add7f1ad 100644 (file)
@@ -55,7 +55,7 @@ class ProfileMiniList extends ProfileList
 
         while ($this->profile->fetch()) {
             $cnt++;
-            if($cnt > PROFILES_PER_PAGE) {
+            if($cnt > PROFILES_PER_MINILIST) {
                 break;
             }
             $this->showProfile();