Fix the More... link for popular notices section

This commit is contained in:
Evan Prodromou 2009-02-14 17:48:08 -05:00
parent c640b747f7
commit b9fc7334a8
2 changed files with 6 additions and 1 deletions

View File

@ -80,4 +80,9 @@ class PopularNoticeSection extends NoticeSection
{ {
return 'popular_notices'; return 'popular_notices';
} }
function moreUrl()
{
return common_local_url('favorited');
}
} }

View File

@ -103,6 +103,6 @@ class Section extends Widget
function moreTitle() function moreTitle()
{ {
return null; return _('More...');
} }
} }