Merge branch 'master' into 0.7.x

This commit is contained in:
Evan Prodromou 2009-02-14 21:28:30 -05:00
commit 9b31571449
3 changed files with 11 additions and 1 deletions

View File

@ -86,4 +86,9 @@ class FeaturedUsersSection extends ProfileSection
{ {
return 'featured_users'; return 'featured_users';
} }
function moreUrl()
{
return common_local_url('featured');
}
} }

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...');
} }
} }