From: Craig Andrews Date: Sat, 12 Sep 2009 21:06:46 +0000 (-0400) Subject: NoticeForm's constructor's inreplyto argument should be optional (defaulting to null) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7cd80b29c45c2255e32328dc8b4e8a19933aa645;p=quix0rs-gnu-social.git NoticeForm's constructor's inreplyto argument should be optional (defaulting to null) --- diff --git a/lib/noticeform.php b/lib/noticeform.php index d1387b1b7c..350e37db8c 100644 --- a/lib/noticeform.php +++ b/lib/noticeform.php @@ -83,7 +83,7 @@ class NoticeForm extends Form * @param string $content content to pre-fill */ - function __construct($out=null, $action=null, $content=null, $user=null, $inreplyto) + function __construct($out=null, $action=null, $content=null, $user=null, $inreplyto=null) { parent::__construct($out);