I've found the function HTMLEncode, that converts several characters into specifal char symbols. For example when we use such HTML code:
<img onClick="alert('Hooray');">
it will change it this way:
<img onClick=alert(`Hooray`);>
strips " and sets ` (#146) instead of simple single qm.
It is also possible to spoil suche way some php scripts or special commands that're exist in html page source.
What that is done for? How can we change this back, after processing in FCKeditor?
<img onClick="alert('Hooray');">
it will change it this way:
<img onClick=alert(`Hooray`);>
strips " and sets ` (#146) instead of simple single qm.
It is also possible to spoil suche way some php scripts or special commands that're exist in html page source.
What that is done for? How can we change this back, after processing in FCKeditor?