summaryrefslogtreecommitdiff
path: root/actions/featured.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-06-17 08:21:53 -0700
committerEvan Prodromou <evan@controlyourself.ca>2009-06-17 08:21:53 -0700
commit2fbd141361b6ddab0e036b52fc23f2bfcdfd0075 (patch)
treecf3c41c7bad39a856150287c3787e5a00de96722 /actions/featured.php
parent8384e7c7f63d209cf0cbf9574586de84f88959d0 (diff)
correct arguments for ProfileList
Diffstat (limited to 'actions/featured.php')
-rw-r--r--actions/featured.php5
1 files changed, 2 insertions, 3 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();
}