hurricane_sh
Member
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:
public function actionPostThread(ParameterBag $params)
{
$_REQUEST['title'] = $title;
$_POST['title'] = $title;
}