ENXF NET
Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
- Joined
- Nov 13, 2018
- Messages
- 24,684
- Points
- 823
Reputation:
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:
Continue reading...
PHP:
Code:
public function actionPostThread(ParameterBag $params)
{
$_REQUEST['title'] = $title;
$_POST['title'] = $title;
}
Continue reading...