From 196df7d8a4141b64417b2002d04e4a7882c917eb Mon Sep 17 00:00:00 2001 From: Mikael Nordfeldth Date: Sat, 7 Mar 2015 20:34:46 +0100 Subject: [PATCH] Change the title of NewnoticeAction if replying --- actions/newnotice.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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; } -- 2.39.5