mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 08:26:37 +02:00
Slightly different way of doing this to avoid problems with error_reporting
not working.
This commit is contained in:
parent
1c109ec5b6
commit
42b76b11bd
1 changed files with 4 additions and 1 deletions
|
@ -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.
|
||||
?>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue