Question: Does Not Save Correctly In Add Biller

Does Not Save Correctly In Add Biller

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.

LD

Llister Duran

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.
  • MS

    Mian Saleem

    Answered
    Hello,

    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