1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-06 06:38:00 +02:00

Possible HTML validation issue fix for Font-Awesome etc

This commit is contained in:
Cameron
2017-12-09 12:28:00 -08:00
parent 8789ce6f1c
commit bd27b8ec04

View File

@@ -3982,7 +3982,7 @@ class e_parser
$style = (!empty($parm['style'])) ? "style='".$parm['style']."' " : '';
$class = (!empty($parm['class'])) ? $parm['class']." " : '';
$text = "<".$tag." {$idAtt}class='".$class.$prefix.$id.$size.$spin.$rotate.$fixedW."' {$style}></".$tag.">" ;
$text = "<".$tag." {$idAtt}class='".$class.$prefix.$id.$size.$spin.$rotate.$fixedW."' {$style}><!-- --></".$tag.">" ;
$text .= ($options !== false) ? $options : "";
return $text;