From: moodler Date: Fri, 22 Sep 2006 17:27:19 +0000 (+0000) Subject: Fixing MDL-6636, reference to file that is now gone (site.html) X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=78850d9e7d7731aaddd015edbac7aae51e86023a;p=moodle.git Fixing MDL-6636, reference to file that is now gone (site.html) --- diff --git a/install.php b/install.php index 8f47eefb7a..3c1c4a5108 100644 --- a/install.php +++ b/install.php @@ -378,7 +378,7 @@ if ($INSTALL['stage'] == DATABASE) { if ($nextstage == ADMIN or $INSTALL['stage'] == ADMIN) { if (!ini_get('allow_url_fopen')) { $nextstage = ($goforward) ? ENVIRONMENT : DATABASE; - } else if (($fh = @fopen($INSTALL['wwwrootform'].'/'.$INSTALL['admindirname'].'/site.html', 'r')) !== false) { + } else if (($fh = @fopen($INSTALL['wwwrootform'].'/'.$INSTALL['admindirname'].'/environment.xml', 'r')) !== false) { $nextstage = ($goforward) ? ENVIRONMENT : DATABASE; fclose($fh); } else {