1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- require_once INSTALLDIR . '/actions/newnotice.php';
- class NewresponseAction extends NewnoticeAction
- {
-
- function showNoticeForm()
- {
- $content = $this->trimmed('status_textarea');
- if (!$content) {
- $replyto = $this->trimmed('replyto');
- $inreplyto = $this->trimmed('inreplyto');
- } else {
-
- $inreplyto = null;
- }
- $notice_form = new NoticeForm($this, '', $content, null, $inreplyto);
- $notice_form->show();
- }
- }
|