Morkup correct author for a repeat
The original author is not the author of this entry, but of the original entry.
This commit is contained in:
parent
0ba53edd96
commit
54e87dd2c3
@ -235,8 +235,9 @@ class NoticeListItem extends Widget
|
|||||||
function showAuthor()
|
function showAuthor()
|
||||||
{
|
{
|
||||||
$attrs = array('href' => $this->profile->profileurl,
|
$attrs = array('href' => $this->profile->profileurl,
|
||||||
'class' => 'h-card p-author',
|
'class' => 'h-card',
|
||||||
'title' => $this->profile->getNickname());
|
'title' => $this->profile->getNickname());
|
||||||
|
if(empty($this->repeat)) { $attrs['class'] .= ' p-author'; }
|
||||||
|
|
||||||
if (Event::handle('StartShowNoticeItemAuthor', array($this->profile, $this->out, &$attrs))) {
|
if (Event::handle('StartShowNoticeItemAuthor', array($this->profile, $this->out, &$attrs))) {
|
||||||
$this->out->elementStart('a', $attrs);
|
$this->out->elementStart('a', $attrs);
|
||||||
|
@ -204,7 +204,7 @@ class SharePlugin extends ActivityVerbHandlerPlugin
|
|||||||
'class' => 'h-card p-author',
|
'class' => 'h-card p-author',
|
||||||
'title' => $repeater->getFancyName());
|
'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.
|
// TRANS: Addition in notice list item if notice was repeated. Followed by a span with a nickname.
|
||||||
$nli->out->raw(_('Repeated by').' ');
|
$nli->out->raw(_('Repeated by').' ');
|
||||||
|
Loading…
Reference in New Issue
Block a user