XF 1.2 Reported content message

Is there a way to modify the reported content so that the title includes the node that it is from? On our site, the moderators look for reports from their specific forums. But the report only shows the name of the post and thread, not the node.

current:
Reported Content: Post in thread 'This is the thread name'

change to:
Reported Content in 'Node Name': Post in thread 'This is the thread name'

or even better:
RC in 'Node Name': 'This is the thread name'
 
Editing the phrase will not do what you wish, you need an add-on to modify the actual fetch of the content. Specifically, you need to pull the content_id from the table, and join the necessary node information from xf_node. And then you can modify the phrase, but you will also need to modify the necessary report handler (in the case of a post: XenForo_ReportHandler_Post) and the function getContentTitle to pass the forum node information into the phrase.
 
Editing the phrase will not do what you wish, you need an add-on to modify the actual fetch of the content. Specifically, you need to pull the content_id from the table, and join the necessary node information from xf_node. And then you can modify the phrase, but you will also need to modify the necessary report handler (in the case of a post: XenForo_ReportHandler_Post) and the function getContentTitle to pass the forum node information into the phrase.

Oy vey. That's a lot just to get the forum name in there. Is there any add-on that can help with this?
 
Top Bottom