don't use fetchAll() for profile lists ever

This commit is contained in:
Evan Prodromou 2011-08-27 13:34:14 -04:00
parent 6132bddabc
commit 8501ddf0ee
1 changed files with 7 additions and 1 deletions

View File

@ -85,7 +85,13 @@ class ProfileList extends Widget
function showProfiles()
{
$profiles = $this->profile->fetchAll();
// Note: we don't use fetchAll() because it's borked with query()
$profiles = array();
while ($this->profile->fetch()) {
$profiles[] = clone($this->profile);
}
$cnt = count($profiles);