From: Evan Prodromou Date: Sat, 14 Feb 2009 22:48:08 +0000 (-0500) Subject: Fix the More... link for popular notices section X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b9fc7334a8ecfbe1c0ec6c3d5451aa82827b50a1;hp=c640b747f7e682ac632397cf32e41ef4c2dca96f;p=quix0rs-gnu-social.git Fix the More... link for popular notices section --- diff --git a/lib/popularnoticesection.php b/lib/popularnoticesection.php index 5734d80018..5380563b9e 100644 --- a/lib/popularnoticesection.php +++ b/lib/popularnoticesection.php @@ -80,4 +80,9 @@ class PopularNoticeSection extends NoticeSection { return 'popular_notices'; } + + function moreUrl() + { + return common_local_url('favorited'); + } } diff --git a/lib/section.php b/lib/section.php index 0c32ddcf84..d145750862 100644 --- a/lib/section.php +++ b/lib/section.php @@ -103,6 +103,6 @@ class Section extends Widget function moreTitle() { - return null; + return _('More...'); } }