Reference local URLs in addressee list on notices.

This commit is contained in:
Mikael Nordfeldth 2016-08-06 18:29:38 +02:00
parent 563b3b1328
commit 557e430c7d
1 changed files with 6 additions and 6 deletions

View File

@ -284,7 +284,7 @@ class NoticeListItem extends Widget
$this->out->elementStart('ul', 'addressees');
$first = true;
foreach ($pa as $addr) {
$this->out->elementStart('li', 'h-card');
$this->out->elementStart('li');
$text = $addr['text'];
unset($addr['text']);
$this->out->element('a', $addr, $text);
@ -302,12 +302,12 @@ class NoticeListItem extends Widget
$attentions = $this->getAttentionProfiles();
foreach ($attentions as $attn) {
$class = $attn->isGroup() ? 'group' : 'account';
$profileurl = $attn->getUri();
if (common_valid_http_url($profileurl)) {
$class .= ' u-uid';
if ($attn->isGroup()) {
$class = 'group';
$profileurl = common_local_url('groupbyid', array('id' => $attn->getGroup()->getID()));
} else {
$profileurl = $attn->getUrl();
$class = 'account';
$profileurl = common_local_url('userbyid', array('id' => $attn->getID()));
}
$this->pa[] = array('href' => $profileurl,
'title' => $attn->getNickname(),