Ich habe das erst jetzt gemerkt, weil ich eine "noch" 4.11.5 Version auf 4.12.* upgradete. Ich konnte es mit up- und downgrades soweit eingrenzen, dass die Änderung erstmals bei 4.11.6 auftritt.
Ich habe ein HTML Element um eine OpenStreetMap anzuzeigen:
In 4.11.5 speichert das HTML Element in der DB
HTML-Code:
const LatLong = [38.6342, 20.6104];
var zoom = 15;
const IconURL = 'files/pic/marker/Flag-Azure-32.png';
const Circle = true;
ab 4.11.6 sieht es dann so aus:
HTML-Code:
const LatLong =[38.6342, 20.6104];
var zoom = 15;
const IconURL = 'files/pic/marker/Flag-Azure-32.png';
const Circle = true;
Hier hat nun Javascript mit = ein Problem. Nun dachte ich, ich könne das be_tinyMCE.html5 anpassen. Aber das war's auch nicht "Gut, der Laie versucht alles wilde":
HTML-Code:
element_format: 'html',
entity_encoding : 'raw',
entities: '160,nbsp,60,lt,62,gt,173,shy,=',
protect: [
/\<\/?(if|endif)\>/g, // Protect <if> & </endif>
/=/g, // Protect <xsl:...>
/<\?php.*?\?>/g // Protect php code
]
So bin ich nun am Anschlag. Wo müste ich was ändern?