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:
commit
2addf8e456
@ -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),
|
||||
|
Loading…
Reference in New Issue
Block a user