diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-06-06 14:03:30 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-06-06 14:03:30 -0400 |
commit | 59db378c9304293c380778a1eb59ece5fbacb590 (patch) | |
tree | 7f56ba3982da56b206464d1281abff9a421495bb /actions/postnotice.php | |
parent | 3d0f3095b34da8c6bb716f0f5966c58c6ec04f6f (diff) |
was using $notice->uri instead of $notice_uri
darcs-hash:20080606180330-84dde-be0e84696cd5e7304cd8523c0d7de9d6e402b73e.gz
Diffstat (limited to 'actions/postnotice.php')
-rw-r--r-- | actions/postnotice.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/postnotice.php b/actions/postnotice.php index cf9a3f3a0..718ebdab0 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; |