From 8ed9c72991b71272e1a2b1ec36ccab7aa5942ae8 Mon Sep 17 00:00:00 2001 From: Simon Coggins Date: Wed, 19 Sep 2012 09:09:04 +1200 Subject: [PATCH] MDL-35472: Prevent html tags appearing in page titles Only a problem when formatstringstriptags is disabled --- lib/pagelib.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/pagelib.php b/lib/pagelib.php index 29f6c100e98..c37720b075e 100644 --- a/lib/pagelib.php +++ b/lib/pagelib.php @@ -918,6 +918,7 @@ class moodle_page { */ public function set_title($title) { $title = format_string($title); + $title = strip_tags($title); $title = str_replace('"', '"', $title); $this->_title = $title; }