From 9078e95e5f647345e84dfaa78f20d42cfad87dae Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 4 Sep 2008 15:57:20 -0400 Subject: [PATCH] fix bad args in postnotice for new notices darcs-hash:20080904195720-84dde-f286bfe898ef3e08f07fd977bfe692e9cff6c375.gz --- actions/postnotice.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/postnotice.php b/actions/postnotice.php index c1a5e0d5bc..be486a1e9d 100644 --- a/actions/postnotice.php +++ b/actions/postnotice.php @@ -75,7 +75,7 @@ class PostnoticeAction extends Action { } $notice = Notice::staticGet('uri', $notice_uri); if (!$notice) { - $notice = Notice::saveNew($remote_profile->id, $content, 'omb', 0, $notice_uri); + $notice = Notice::saveNew($remote_profile->id, $content, 'omb', false, 0, $notice_uri); if (is_string($notice)) { common_server_serror($notice, 500); return false;