Change loop limit for minilist

This commit is contained in:
Evan Prodromou 2009-01-21 13:32:10 -05:00
parent f980089dd4
commit 516424cccd
1 changed files with 1 additions and 1 deletions

View 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();