diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-06-17 08:21:53 -0700 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-06-17 08:21:53 -0700 |
commit | 2fbd141361b6ddab0e036b52fc23f2bfcdfd0075 (patch) | |
tree | cf3c41c7bad39a856150287c3787e5a00de96722 /actions | |
parent | 8384e7c7f63d209cf0cbf9574586de84f88959d0 (diff) |
correct arguments for ProfileList
Diffstat (limited to 'actions')
-rw-r--r-- | actions/featured.php | 5 | ||||
-rw-r--r-- | actions/peopletag.php | 2 |
2 files changed, 3 insertions, 4 deletions
diff --git a/actions/featured.php b/actions/featured.php index 79eba2aa6..04365687d 100644 --- a/actions/featured.php +++ b/actions/featured.php @@ -32,7 +32,7 @@ if (!defined('LACONICA')) { exit(1); } -require_once(INSTALLDIR.'/lib/profilelist.php'); +require_once INSTALLDIR.'/lib/profilelist.php'; require_once INSTALLDIR.'/lib/publicgroupnav.php'; /** @@ -107,7 +107,6 @@ class FeaturedAction extends Action $featured_nicks = common_config('nickname', 'featured'); - if (count($featured_nicks) > 0) { $quoted = array(); @@ -136,7 +135,7 @@ class FeaturedAction extends Action $cnt = $profile->find(); if ($cnt > 0) { - $featured = new ProfileList($profile, null, $this); + $featured = new ProfileList($profile, $this); $featured->show(); } diff --git a/actions/peopletag.php b/actions/peopletag.php index 5add75485..dd3c1c089 100644 --- a/actions/peopletag.php +++ b/actions/peopletag.php @@ -124,7 +124,7 @@ class PeopletagAction extends Action $profile->query(sprintf($qry, $this->tag, $lim)); - $pl = new ProfileList($profile, null, $this); + $pl = new ProfileList($profile, $this); $cnt = $pl->show(); $this->pagination($this->page > 1, |