From b1ff7d7a2bb21a0ca345c828335f32b3c44407fb Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 26 Aug 2008 17:11:08 -0400 Subject: fix error storing uris of remote notices darcs-hash:20080826211108-84dde-b277bdb1476b9cec0c0d93fa8d565c4642ba16c8.gz --- lib/stream.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/stream.php') diff --git a/lib/stream.php b/lib/stream.php index b94033d6a..fbdba91c9 100644 --- a/lib/stream.php +++ b/lib/stream.php @@ -96,8 +96,8 @@ 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)) { + # XXX: we need to figure this out better. Is this right? + if (strcmp($notice->uri, $noticeurl) != 0 && preg_match('/^http/', $notice->uri)) { $noticeurl = $notice->uri; } common_element_start('p', 'time'); -- cgit v1.2.3-54-g00ecf