Skip to content

Commit

Permalink
add space after comma
Browse files Browse the repository at this point in the history
  • Loading branch information
zubairraeen committed Dec 20, 2023
1 parent 9844373 commit c018f13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion php/template-variables.php
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ function qsm_variable_single_answer( $content, $mlw_quiz_array ) {
$answerstr .= '<span class="qmn_image_option" ><img src="' . htmlspecialchars_decode($answer, ENT_QUOTES ) . '"/></span>';
}
}else {
$answerstr .= implode(",",$answers['user_answer']);
$answerstr .= implode(", ",$answers['user_answer']);
}


Expand Down

0 comments on commit c018f13

Please sign in to comment.