Index: moodle/mod/choice/lib.php
--- moodle/mod/choice/lib.php Base (1.122)
+++ moodle/mod/choice/lib.php Locally Modified (Based On 1.122)
@@ -242,9 +242,9 @@
                 echo "<td align=\"center\" valign=\"top\">";
                 echo "<input type=\"radio\" name=\"answer\" value=\"".$cd->optionid."\" alt=\"".strip_tags(format_text($cd->text))."\"". $cd->checked.$cd->disabled." />";
                 if (!empty($cd->disabled)) {
-                    echo format_text($cd->text."<br /><strong>".get_string('full', 'choice')."</strong>");
+                    echo "<br /><label>". format_text($cd->text."<br /><strong>".get_string('full', 'choice')."</strong>", FORMAT_HTML) . '</label>';
                 } else {
-                    echo format_text($cd->text);
+                    echo "<br /><label>" . format_text($cd->text, FORMAT_HTML) . "</label>";
                 }
                 echo "</td>";
             }
@@ -259,7 +259,7 @@
                 echo "<tr><td align=\"left\">";
                 echo "<input type=\"radio\" name=\"answer\" value=\"".$cd->optionid."\" alt=\"".strip_tags(format_text($cd->text))."\"". $cd->checked.$cd->disabled." />";
 
-                echo format_text($cd->text. ' ', FORMAT_MOODLE, $displayoptions); //display text for option.
+                echo "<label>". format_text($cd->text. ' ', FORMAT_HTML, $displayoptions) . "</label>"; //display text for option.
 
                 if ($choice->limitanswers && ($choice->showresults==CHOICE_SHOWRESULTS_ALWAYS) ){ //if limit is enabled, and show results always has been selected, display info beside each choice.
                     echo "</td><td>";
