nach .20 und immer noch nach .21 habe ich bei aktiviertem html das problem, dass "nicht" erlaubte html tags zb.:
Code: Alles auswählen
<span class="nix"></span>Code: Alles auswählen
<span></span>Code: Alles auswählen
<span class="nix"></span>Code: Alles auswählen
<span></span>Code: Alles auswählen
<span class="nix">test</span>Code: Alles auswählen
<span>test</span>Code: Alles auswählen
// Finally, this is not an allowed tag so strip all the attibutes and escape itCode: Alles auswählen
// Check if this is an allowed tag
if (in_array(strtolower($tag[1]), $allowed_html_tags))Code: Alles auswählen
// Check if this is an allowed tag
if (in_array(strtolower($tag[1]), $allowed_html_tags) || TRUE)