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

Status
This content is read-only, or is not open for further replies.

TickTackk

Guest
offline
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...
 
Liked by:
Status
This content is read-only, or is not open for further replies.
Top Bottom