Merge branch 'repost-of-uf2' into 'master'

Mark up link to original as a repost for repeats

http://indiewebcamp.com/repost

See merge request !46
This commit is contained in:
mmn 2015-12-14 21:03:38 +00:00
commit 2addf8e456
1 changed files with 13 additions and 0 deletions

View File

@ -537,6 +537,19 @@ class NoticeListItem extends Widget
if (!$this->notice->isLocal()) {
$class .= ' external';
}
try {
if($this->repeat) {
$this->out->element('a',
array('href' => $this->repeat->getUrl(),
'class' => 'u-url'),
'');
$class = str_replace('u-url', 'u-repost-of', $class);
}
} catch (InvalidUrlException $e) {
// no permalink available
}
try {
$this->out->element('a',
array('href' => $this->notice->getUrl(true),