Html Tags not saved on server Side

Hello,

if i write some html tags in textarea field it is saved local but in the database it is missing.
I use the scheduler_connector.php

In the log file i can see that the html Tag will be send to the php script but in the raw dat there are lost:

**DataProcessor object initialized**
82_id => 82
82_start_date => 2019-07-12 10:30
82_end_date => 2019-07-12 11:00
82_text => Beratung Coaching
82_rec_type => 
82_event_pid => 0
82_event_length => 0
**82_inhalt => Teilnehmer: Herr / Max / <br /><br /><br />Mustermann**
82_rec_pattern => 
82_!nativeeditor_status => updated


**Row data [82]**
id => 82
start_date => 2019-07-12 10:30
end_date => 2019-07-12 11:00
betreff => Beratung Coaching
rec_type => 
event_pid => 0
event_length => 0
**inhalt => Teilnehmer: Herr / Max / Mustermann**
rec_pattern => 
!nativeeditor_status => updated

Is there any setting to allow html Tags?
I could not find annything in the docs.

BR
René

The html tags are cutted out due to the security reasons.
https://docs.dhtmlx.com/connector__php__app_security.html#protectionfromcrosssitescriptingxss
This setting can be disabled but only for your own risk, as such scenario may cause the XSS attacks

Thanks,

i didn’t see that.