From: moodler Date: Fri, 13 Dec 2002 03:15:28 +0000 (+0000) Subject: config.php not required ... just in case themes move or something ... X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=45f21f94d764d7fc976246af082886ba6a8d6716;p=moodle.git config.php not required ... just in case themes move or something ... --- diff --git a/lib/setup.php b/lib/setup.php index 97a155de3b..224953a789 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -59,7 +59,7 @@ if (!isset($CFG->theme)) { $CFG->theme = "standard"; } - require("$CFG->dirroot/theme/$CFG->theme/config.php"); + include("$CFG->dirroot/theme/$CFG->theme/config.php"); $CFG->stylesheet = "$CFG->wwwroot/theme/$CFG->theme/styles.php"; $CFG->header = "$CFG->dirroot/theme/$CFG->theme/header.html";