$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);
$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(),