(09-22-2020, 06:51 AM)nicojmb Wrote: Have you looked in the database how the string is saved? if you use in form a wyswyg, all html are encoded like the "&".
I checked, and it is being saved correctly in the database. However, nicojmb's suggestion prompted me to dig a little deeper. The CI4 model is, in fact, returning "&" and not "&" as it should. It is the Form Helper's set_value() function that is swapping "&" for "&". I did not pay close enough attention to the documentation, and did not set the $html_escape flag to FALSE. All is well now.