From 07b257469142a80a5a8494e0a6e080500099d4ed Mon Sep 17 00:00:00 2001 From: Jelle Kok Date: Sat, 20 Jul 2019 02:58:12 +0200 Subject: [PATCH] fix missing title subject on reply --- .../com_kunena/controller/topic/form/reply/display.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/com_kunena/controller/topic/form/reply/display.php b/src/components/com_kunena/controller/topic/form/reply/display.php index 4404968c8e9..4dcee3cf122 100644 --- a/src/components/com_kunena/controller/topic/form/reply/display.php +++ b/src/components/com_kunena/controller/topic/form/reply/display.php @@ -133,6 +133,8 @@ protected function before() Factory::getApplication()->triggerEvent('onKunenaPrepare', array('kunena.topic', &$this->topic, &$params, 0)); + $this->headerText = Text::_('COM_KUNENA_BUTTON_MESSAGE_REPLY') . ': ' . $this->topic->subject; + // Can user edit topic icons? if ($this->config->topicicons && $this->topic->isAuthorised('edit')) { @@ -149,7 +151,6 @@ protected function before() $this->app->setUserState('com_kunena.postfields', null); $this->canSubscribe = $this->canSubscribe(); - $this->headerText = Text::_('COM_KUNENA_BUTTON_MESSAGE_REPLY') . ': ' . $this->topic->subject; } /**