X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Ffeatured.php;h=04365687d763c3e3b3dac39c60e5e3ff5266791f;hb=adc5901d21be286ff3459f2cd2bf4373625ac5e5;hp=86fd3f374aa37e221e691f83aaf0c78cc8195f9b;hpb=a0a6a627e7c8f036588a3e3488fb1c273e3815c4;p=quix0rs-gnu-social.git diff --git a/actions/featured.php b/actions/featured.php index 86fd3f374a..04365687d7 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'; /** @@ -50,7 +50,7 @@ class FeaturedAction extends Action { var $page = null; - function isReadOnly() + function isReadOnly($args) { return true; } @@ -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(); }