]> git.mjollnir.org Git - moodle.git/commitdiff
Merging from STABLE
authorthepurpleblob <thepurpleblob>
Thu, 4 May 2006 11:17:50 +0000 (11:17 +0000)
committerthepurpleblob <thepurpleblob>
Thu, 4 May 2006 11:17:50 +0000 (11:17 +0000)
question/format/examview/format.php

index 0652116c37be925402b8c7580679b2ed2d5fd9f1..f7cdbef7fdfdbc8d30ee456e629c4fdaddb51295 100755 (executable)
 **   Support of rejoinders
 **
 ** $Log$
+** Revision 1.3  2006/05/04 11:17:50  thepurpleblob
+** Merging from STABLE
+**
+** Revision 1.2.2.1  2006/05/04 11:15:11  thepurpleblob
+** htmlentities() replaced by s()
+**
 ** Revision 1.2  2006/03/01 07:36:08  gustav_delius
 ** Removing some more references to quiz from import/export code
 **
@@ -198,7 +204,7 @@ class qformat_examview extends qformat_default {
     function htmlPrepare($htmltext)
     {
         $text = trim($text);
-        $text = htmlentities($htmltext, ENT_QUOTES);
+        $text = s($htmltext);
         //$htmltext = nl2br($text);
         return $text;
     }