[RSS Feed/News] Change thread titles

Status
Not open for further replies.

XenForo

Administrative
  • Thread starter
  • Admin
  • #1
I want to change thread titles in my overridden method, I have tried changing _POST and _REQUEST, I can see the global variables were changed successfully, but they are not used in the posted thread. How can I change it? Thanks!

PHP:

Code:
public function actionPostThread(ParameterBag $params)
{
       $_REQUEST['title'] = $title;
       $_POST['title'] = $title;
}
Read more about this Feed . . .
 
Status
Not open for further replies.
Back
Top Bottom