Skip to content

Commit

Permalink
Fixed issue #13055: Custom css classes for questions are not inserted…
Browse files Browse the repository at this point in the history
… correctly into the html - missing space
  • Loading branch information
lacrioque committed Dec 21, 2017
1 parent 65f3af3 commit 42793bc
Show file tree
Hide file tree
Showing 2 changed files with 216 additions and 235 deletions.
2 changes: 1 addition & 1 deletion application/core/LS_Twig_Extension.php
Expand Up @@ -198,7 +198,7 @@ public static function getAllQuestionClasses($iQid)
/* Got to use static expression */
$emCssClass = trim(LimeExpressionManager::ProcessString($aQuestionAttributes['cssclass'], null, array(), 1, 1, false, false, true)); /* static var is the lmast one ...*/
if ($emCssClass != "") {
$aQuestionClass .= Chtml::encode($emCssClass);
$aQuestionClass .= " ".Chtml::encode($emCssClass);
}
}

Expand Down

0 comments on commit 42793bc

Please sign in to comment.