diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-06-14 22:09:04 -0700 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-06-14 22:09:04 -0700 |
commit | bef643352d573235aedbdd93125e93c42edb306b (patch) | |
tree | 2dd866db7e00a54d8b4735c923fdcc2d76df8b97 | |
parent | ee8dd62038993c184b704df08a3ab1fbcf0c04ac (diff) |
return count from show
-rw-r--r-- | lib/profilelist.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/profilelist.php b/lib/profilelist.php index bd866bed7..a604230f8 100644 --- a/lib/profilelist.php +++ b/lib/profilelist.php @@ -63,8 +63,9 @@ class ProfileList extends Widget function show() { $this->startList(); - $this->showProfiles(); + $cnt = $this->showProfiles(); $this->endList(); + return $cnt; } function startList() |