MDL-35472: Prevent html tags appearing in page titles

Only a problem when formatstringstriptags is disabled
This commit is contained in:
Simon Coggins
2012-09-19 09:09:04 +12:00
parent 4db36990ee
commit 8ed9c72991
+1
View File
@@ -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;
}