From 2eea2ccedc022520bbce32aaa8912078cfa19701 Mon Sep 17 00:00:00 2001 From: moodler Date: Fri, 24 Oct 2003 06:27:15 +0000 Subject: [PATCH] Remove quotes from title - these can cause the stylesheet to not load properly on Internet Explorer. --- lib/weblib.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/weblib.php b/lib/weblib.php index ff0ec5b697..bfefaae265 100644 --- a/lib/weblib.php +++ b/lib/weblib.php @@ -839,6 +839,8 @@ function print_header ($title="", $heading="", $navigation="", $focus="", $meta= $direction = " xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"$currentlanguage\" $direction"; } + $title = str_replace('"', '"', $title); + include ("$CFG->dirroot/theme/$CFG->theme/header.html"); } -- 2.39.5