MDL-35472: Prevent html tags appearing in page titles
Only a problem when formatstringstriptags is disabled
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user