diff options
Diffstat (limited to 'engine/start.php')
-rw-r--r-- | engine/start.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/start.php b/engine/start.php index d586a3fb2..8b0e7dd14 100644 --- a/engine/start.php +++ b/engine/start.php @@ -19,7 +19,8 @@ if (!@include_once(dirname(__FILE__) . "/lib/exceptions.php")) { // Exceptions
echo "Error in installation: could not load the Exceptions library.";
exit;
- }
+ } +
if (!@include_once(dirname(__FILE__) . "/lib/elgglib.php")) { // Main Elgg library
throw new InstallationException("Elgg could not load its main library.");
} @@ -27,13 +28,12 @@ if (!@include_once(dirname(__FILE__) . "/lib/system_log.php")) { // Logging library echo "Error in installation: could not load the System Log library."; exit; - }
-
+ } +
if (!@include_once(dirname(__FILE__) . "/lib/export.php")) { // Export library
echo "Error in installation: could not load the Export library.";
exit;
}
-
/**
* Set light mode default
|