From: Evan Prodromou Date: Sat, 17 Sep 2011 21:00:30 +0000 (-0400) Subject: show correct favorites link X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=945bdf649be19962dc9f578036dcc83fe334ee9c;p=quix0rs-gnu-social.git show correct favorites link --- diff --git a/lib/popularnoticesection.php b/lib/popularnoticesection.php index f6f27c6878..e66df8f423 100644 --- a/lib/popularnoticesection.php +++ b/lib/popularnoticesection.php @@ -69,6 +69,12 @@ class PopularNoticeSection extends NoticeSection function moreUrl() { - return common_local_url('favorited'); + if (common_config('singleuser', 'enabled')) { + $user = User::singleUser(); + common_local_url('showfavorites', array('nickname' => + $user->nickname)); + } else { + return common_local_url('favorited'); + } } }