From 183f9cc99c1f805b39e17df2958f4c9aeeb43c96 Mon Sep 17 00:00:00 2001 From: skodak Date: Mon, 25 Feb 2008 20:39:42 +0000 Subject: [PATCH] MDL-13665 HTML editor is loaded as non-secure on the secure "Add new user" form, patch by Steve Bond; merged from MOOODLE_19_SATBLE --- lib/weblib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/weblib.php b/lib/weblib.php index 8bfc570bc3..e96ca62287 100644 --- a/lib/weblib.php +++ b/lib/weblib.php @@ -4862,7 +4862,7 @@ function print_textarea($usehtmleditor, $rows, $cols, $width, $height, $name, $v if ($usehtmleditor) { if (!empty($courseid) and has_capability('moodle/course:managefiles', get_context_instance(CONTEXT_COURSE, $courseid))) { - $httpsrequired = empty($HTTPSPAGEREQUIRED) ? '' : '&t;httpsrequired=1'; + $httpsrequired = empty($HTTPSPAGEREQUIRED) ? '' : '&httpsrequired=1'; // needed for course file area browsing in image insert plugin $str .= ($scriptcount < 1) ? ''."\n" : ''; -- 2.39.5