From bd27b8ec04dbd2ec8e9c3f2d6ff2d3bbf6cd1d51 Mon Sep 17 00:00:00 2001 From: Cameron Date: Sat, 9 Dec 2017 12:28:00 -0800 Subject: [PATCH] Possible HTML validation issue fix for Font-Awesome etc --- e107_handlers/e_parse_class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e107_handlers/e_parse_class.php b/e107_handlers/e_parse_class.php index c8d3569c4..a6ee63256 100644 --- a/e107_handlers/e_parse_class.php +++ b/e107_handlers/e_parse_class.php @@ -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}>" ; + $text = "<".$tag." {$idAtt}class='".$class.$prefix.$id.$size.$spin.$rotate.$fixedW."' {$style}>" ; $text .= ($options !== false) ? $options : ""; return $text;