Bug When report is created as a thread, only the content title is available for the thread title phrase

There is a bug in this version
T

TickTackk

Guest
In XF\Service\Report\Creator Changing
PHP:

Code:
            $title = \XF::phrase('reported_thread_title', ['title' => $handler->getContentTitle($report)])->render('raw');
            $messageContent = \XF::phrase('reported_thread_message', $params)->render('raw');
to
PHP:

Code:
            $title = \XF::phrase('reported_thread_title', $params)->render('raw');
            $messageContent = \XF::phrase('reported_thread_message', $params)->render('raw');
will explore the...

Read more

Continue reading...