From: Evan Prodromou Date: Mon, 20 Oct 2008 17:31:08 +0000 (-0400) Subject: correct number of args to saveNew in newnotice X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=278f5cf8426d1b5648840508fef293b59246d023;p=quix0rs-gnu-social.git correct number of args to saveNew in newnotice darcs-hash:20081020173108-5ed1f-06b346f0f341bf8401d29dcf725db69c5d26cc14.gz --- diff --git a/actions/newnotice.php b/actions/newnotice.php index 8a1fd293ff..d581272e2b 100644 --- a/actions/newnotice.php +++ b/actions/newnotice.php @@ -63,7 +63,7 @@ class NewnoticeAction extends Action { common_debug("Replyto = $replyto\n"); - $notice = Notice::saveNew($user->id, $content, 'web', $replyto); + $notice = Notice::saveNew($user->id, $content, 'web', 1, $replyto); if (is_string($notice)) { $this->show_form($notice);