From: Mikael Nordfeldth Date: Sat, 7 Mar 2015 19:34:46 +0000 (+0100) Subject: Change the title of NewnoticeAction if replying X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=196df7d8a4141b64417b2002d04e4a7882c917eb;p=quix0rs-gnu-social.git Change the title of NewnoticeAction if replying --- diff --git a/actions/newnotice.php b/actions/newnotice.php index f9b04cae3c..ff1af63442 100644 --- a/actions/newnotice.php +++ b/actions/newnotice.php @@ -62,6 +62,9 @@ class NewnoticeAction extends FormAction // TRANS: Page title after sending a notice. return _('Notice posted'); } + if ($this->int('inreplyto')) { + return _m('TITLE', 'New reply'); + } // TRANS: Page title for sending a new notice. return _m('TITLE','New notice'); } @@ -128,7 +131,7 @@ class NewnoticeAction extends FormAction Notice::maxContent())); } - $replyto = intval($this->trimmed('inreplyto')); + $replyto = $this->int('inreplyto'); if ($replyto) { $options['reply_to'] = $replyto; }