From: Evan Prodromou Date: Fri, 6 Jun 2008 18:03:30 +0000 (-0400) Subject: was using $notice->uri instead of $notice_uri X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=59db378c9304293c380778a1eb59ece5fbacb590;p=quix0rs-gnu-social.git was using $notice->uri instead of $notice_uri darcs-hash:20080606180330-84dde-be0e84696cd5e7304cd8523c0d7de9d6e402b73e.gz --- 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;