From: Evan Prodromou Date: Wed, 21 Jan 2009 18:32:10 +0000 (-0500) Subject: Change loop limit for minilist X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=516424cccd885214fb752504f25d7014aa7b5104;p=quix0rs-gnu-social.git Change loop limit for minilist --- diff --git a/lib/profileminilist.php b/lib/profileminilist.php index f6f109c927..c6970f8088 100644 --- a/lib/profileminilist.php +++ b/lib/profileminilist.php @@ -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();