forked from GNUsocial/gnu-social
Merge branch 'correct-author-for-repeat' into 'master'
Markup correct author for a repeat The original author is not the author of this entry, but of the original entry. See merge request !51
This commit is contained in:
commit
4b7c904fe0
@ -235,8 +235,9 @@ class NoticeListItem extends Widget
|
||||
function showAuthor()
|
||||
{
|
||||
$attrs = array('href' => $this->profile->profileurl,
|
||||
'class' => 'h-card p-author',
|
||||
'class' => 'h-card',
|
||||
'title' => $this->profile->getNickname());
|
||||
if(empty($this->repeat)) { $attrs['class'] .= ' p-author'; }
|
||||
|
||||
if (Event::handle('StartShowNoticeItemAuthor', array($this->profile, $this->out, &$attrs))) {
|
||||
$this->out->elementStart('a', $attrs);
|
||||
|
@ -204,7 +204,7 @@ class SharePlugin extends ActivityVerbHandlerPlugin
|
||||
'class' => 'h-card p-author',
|
||||
'title' => $repeater->getFancyName());
|
||||
|
||||
$nli->out->elementStart('span', 'repeat h-entry');
|
||||
$nli->out->elementStart('span', 'repeat');
|
||||
|
||||
// TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname.
|
||||
$nli->out->raw(_('Repeated by').' ');
|
||||
|
Loading…
Reference in New Issue
Block a user