From 59db378c9304293c380778a1eb59ece5fbacb590 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 6 Jun 2008 14:03:30 -0400 Subject: [PATCH] was using $notice->uri instead of $notice_uri darcs-hash:20080606180330-84dde-be0e84696cd5e7304cd8523c0d7de9d6e402b73e.gz --- actions/postnotice.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/postnotice.php b/actions/postnotice.php index cf9a3f3a0f..718ebdab05 100644 --- a/actions/postnotice.php +++ b/actions/postnotice.php @@ -76,7 +76,7 @@ class PostnoticeAction extends Action { if (!$notice) { $notice = new Notice(); $notice->profile_id = $remote_profile->id; - $notice->uri = $notice->uri; + $notice->uri = $notice_uri; $notice->content = $content; if ($notice_url) { $notice->url = $notice_url;