forked from GNUsocial/gnu-social
When nofollow|external=sometimes, do follow on favorites page
This commit is contained in:
parent
5329c5001c
commit
0e443c524f
@ -227,7 +227,7 @@ class ShowfavoritesAction extends OwnerDesignAction
|
||||
|
||||
function showContent()
|
||||
{
|
||||
$nl = new NoticeList($this->notice, $this);
|
||||
$nl = new FavoritesNoticeList($this->notice, $this);
|
||||
|
||||
$cnt = $nl->show();
|
||||
if (0 == $cnt) {
|
||||
@ -244,3 +244,15 @@ class ShowfavoritesAction extends OwnerDesignAction
|
||||
}
|
||||
}
|
||||
|
||||
class FavoritesNoticeList extends NoticeList
|
||||
{
|
||||
function newListItem($notice)
|
||||
{
|
||||
return new FavoritesNoticeListItem($notice, $this->out);
|
||||
}
|
||||
}
|
||||
|
||||
// All handled by superclass
|
||||
class FavoritesNoticeListItem extends DoFollowListItem
|
||||
{
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user