LD
Asked
I attach two images to show the error.
In previous version it saved me correctly inserting html code now it simply adds a / after saving applying the changes incorrectly.
In previous version it saved me correctly inserting html code now it simply adds a / after saving applying the changes incorrectly.
Attachments
- MSAnsweredHello,
Yes, the changes were made quite before. Many users have single and double quotes that were breaking the js code. Now SMA by default `addSlashes` to all input.
If you don't need, you can delete or edit `app/core/MY_Input.php` and replace the return statement to
```
return ($xss_clean === TRUE)
? $this->security->xss_clean($value)
: $value;
```
Thank you - Login to Reply