]> git.mjollnir.org Git - moodle.git/commitdiff
Fixed some accidental lowercasing
authormoodler <moodler>
Mon, 7 Jul 2003 11:52:05 +0000 (11:52 +0000)
committermoodler <moodler>
Mon, 7 Jul 2003 11:52:05 +0000 (11:52 +0000)
mod/choice/report.php
mod/choice/view.php

index 842caddcc446a926cb2efa6fbf91c16acce2d49a..080d627c50714176ce042168bbba5cc3d9b8741f 100644 (file)
@@ -75,7 +75,7 @@
         if ($key) {
             echo "<th width=\"$tablewidth%\">";
         } else {
-            echo "<th bgcolor=\"$theme->body\" width=\"$tablewidth%\">";
+            echo "<th bgcolor=\"$THEME->body\" width=\"$tablewidth%\">";
         }
         echo choice_get_answer($choice, $key);
         echo "</th>";
@@ -84,9 +84,9 @@
 
     foreach ($useranswer as $key => $answer) {
         if ($key) {
-            echo "<td width=\"$tablewidth%\" valign=top nowrap bgcolor=\"$theme->cellcontent\">";
+            echo "<td width=\"$tablewidth%\" valign=top nowrap bgcolor=\"$THEME->cellcontent\">";
         } else {
-            echo "<td width=\"$tablewidth%\" valign=top nowrap bgcolor=\"$theme->body\">";
+            echo "<td width=\"$tablewidth%\" valign=top nowrap bgcolor=\"$THEME->body\">";
         }
 
         echo "<table width=\"100%\">";
index c8e1432a1e813c6df076f453228ac2a100ccc7b0..9a624afd16e3d31fc0c0fd2e0841641528e68ec8 100644 (file)
                 if ($key) {
                     echo "<th width=\"$tablewidth%\">";
                 } else {
-                    echo "<th bgcolor=\"$theme->body\" width=\"$tablewidth%\">";
+                    echo "<th bgcolor=\"$THEME->body\" width=\"$tablewidth%\">";
                 }
                 echo choice_get_answer($choice, $key);
                 echo "</th>";