Skip to content

Commit

Permalink
Fixed issue #13611: Adding custom css class to question causes error
Browse files Browse the repository at this point in the history
  • Loading branch information
Shnoulle committed Apr 18, 2018
1 parent 592e433 commit e06a14d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/helpers/SurveyRuntimeHelper.php
Expand Up @@ -1683,7 +1683,7 @@ public function getCurrentQuestionClasses($iQid)
/* Got to use static expression */
$emCssClass = trim(LimeExpressionManager::ProcessString($aQuestionAttributes['cssclass'], null, array(), 1, 1, false, false, true)); /* static var is the last one ...*/
if ($emCssClass != "") {
$aQuestionClass .= " ".Chtml::encode($emCssClass);
$aQuestionClass .= " ".CHtml::encode($emCssClass);
}
}

Expand Down

0 comments on commit e06a14d

Please sign in to comment.