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:
Read more about this Feed . . .
PHP:
Code:
public function actionPostThread(ParameterBag $params)
{
$_REQUEST['title'] = $title;
$_POST['title'] = $title;
}