]> git.mjollnir.org Git - moodle.git/commitdiff
Fixing MDL-6636, reference to file that is now gone (site.html)
authormoodler <moodler>
Fri, 22 Sep 2006 17:27:19 +0000 (17:27 +0000)
committermoodler <moodler>
Fri, 22 Sep 2006 17:27:19 +0000 (17:27 +0000)
install.php

index 8f47eefb7a82c6763e2ffb449c802f82c9c500a2..3c1c4a51082e17848bd7fe323923065e57b74933 100644 (file)
@@ -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 {