Vanilla open source was terminated 1 January 2025 by Higher Logic. See this announcement for more information.
Reassign value of the field
I need to reassign the value of field 'Body' in the plug-in method
'DiscussionModel_BeforeSaveDiscussion_Handler($Sender)'.
How can I do this?
'DiscussionModel_BeforeSaveDiscussion_Handler($Sender)'.
How can I do this?
Tagged:
0
Comments
ArrayValue('Body',$Sender->EventArguments['Fields'], 0);
should give you the Body. If not, try AfterSaveDiscussion./cd
$Sender->EventArguments['FormPostValues']['Body'] = 'Default';