getConversationUrl introduced for linking to conversations

This commit is contained in:
Mikael Nordfeldth
2014-05-01 15:25:19 +02:00
parent 4774a25040
commit 27ed6b7db0
7 changed files with 51 additions and 71 deletions

View File

@@ -183,17 +183,9 @@ class UserEmailSummaryHandler extends QueueHandler
'title' => $dt),
common_date_string($notice->created));
$out->elementEnd('a');
if ($notice->hasConversation()) {
$conv = Conversation::getKV('id', $notice->conversation);
$convurl = $conv->uri;
if (!empty($convurl)) {
$out->text(' ');
$out->element('a',
array('href' => $convurl.'#notice-'.$notice->id),
// TRANS: Link text for link to conversation view.
_m('in context'));
}
}
$out->element('a', array('href' => $notice->getConversationUrl()),
// TRANS: Link text for link to conversation view.
_m('in context'));
$out->elementEnd('div');
$out->elementEnd('td');
$out->elementEnd('tr');