Skip to content

Commit

Permalink
5623 fixed syntax error due to missing single quote
Browse files Browse the repository at this point in the history
  • Loading branch information
gregrgay committed Sep 17, 2016
1 parent 7d773e7 commit 42682eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion themes/default/test_questions/ordering_result.tmpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<?php else: ?>
<img src="<?php echo $this->base_path; ?>images/x.gif" alt="<?php echo _AT('wrong_answer'); ?>" title="<?php echo _AT('wrong_answer'); ?>" height="16" width="16" style="vertical-align: middle" />
<?php endif; ?>
<?php echo $this->answers[$i] == -1 ? '-' : $this->answers[$i]+1; ?>. <?php echo AT_print($this->row['choice_'.$i], 'tests_questions.choice); ?>
<?php echo $this->answers[$i] == -1 ? '-' : $this->answers[$i]+1; ?>. <?php echo AT_print($this->row['choice_'.$i], 'tests_questions.choice'); ?>
</li>
<?php endfor; ?>
</ol>

0 comments on commit 42682eb

Please sign in to comment.