XF 2.0 Report Thread

GSCimbom

Member
Hi everyone,we want to change report title like this "Reported : username | topic title"

but we don't handle this.Can you help us?
 
Go to
/src/XF/Report/Post.php
Find
Code:
'thread_title' => $threadTitle,
Replace with
Code:
'thread_title' => $content->username . " | " . $threadTitle,
Go to /admin.php?phrases -> select your language -> post_in_thread_x -> change the text to
Code:
Reported : {title}
 
Top Bottom