use notice URI if it's not local and it's an HTTP URL

darcs-hash:20080826210314-84dde-34d4eb71c7d74b65c0c4b486f345ed7d9301af15.gz
This commit is contained in:
Evan Prodromou 2008-08-26 17:03:14 -04:00
parent 0bc0568e66
commit 4a28e70cf8
1 changed files with 4 additions and 0 deletions

View File

@ -96,6 +96,10 @@ class StreamAction extends Action {
}
common_element_end('p');
$noticeurl = common_local_url('shownotice', array('notice' => $notice->id));
# XXX: we need to figure this out better
if ($notice->uri != $noticeurl && preg_match('/^http/', $notice->uri)) {
$noticeurl = $notice->uri;
}
common_element_start('p', 'time');
common_element('a', array('class' => 'permalink',
'href' => $noticeurl,