diff options
author | Craig Andrews <candrews@integralblue.com> | 2009-09-12 17:06:46 -0400 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2009-09-12 17:06:46 -0400 |
commit | 7cd80b29c45c2255e32328dc8b4e8a19933aa645 (patch) | |
tree | 0a0baf8599a69b151b1f166dc932b26ff36fc3f6 /lib/noticeform.php | |
parent | b75ed37eeb8318a5a5f82f080fb2536af0dbc6be (diff) |
NoticeForm's constructor's inreplyto argument should be optional (defaulting to null)
Diffstat (limited to 'lib/noticeform.php')
-rw-r--r-- | lib/noticeform.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/noticeform.php b/lib/noticeform.php index d1387b1b7..350e37db8 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); |