From 42b76b11bda1a3a2088fc804ee31b51f5c63cafc Mon Sep 17 00:00:00 2001 From: moodler <moodler> Date: Mon, 1 Sep 2003 12:07:06 +0000 Subject: [PATCH] Slightly different way of doing this to avoid problems with error_reporting not working. --- config-dist.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/config-dist.php b/config-dist.php index e8c129ef52d..70081967f92 100644 --- a/config-dist.php +++ b/config-dist.php @@ -124,7 +124,9 @@ $CFG->admin = 'admin'; // ALL DONE! To continue installation, visit your main page with a browser //========================================================================= -if (! @include_once("$CFG->dirroot/lib/setup.php")) { // Do not edit +if (file_exists("$CFG->dirroot/lib/setup.php")) { // Do not edit + include_once("$CFG->dirroot/lib/setup.php"); +} else { if ($CFG->dirroot == dirname(__FILE__)) { echo "<p>Could not find this file: $CFG->dirroot/lib/setup.php</p>"; echo "<p>Are you sure all your files have been uploaded?</p>"; @@ -136,6 +138,7 @@ if (! @include_once("$CFG->dirroot/lib/setup.php")) { // Do not edit die; } + // MAKE SURE WHEN YOU EDIT THIS FILE THAT THERE ARE NO SPACES, BLANK LINES, // RETURNS, OR ANYTHING ELSE AFTER THE TWO CHARACTERS ON THE NEXT LINE. ?>