diff options
author | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-05-23 10:38:02 +0000 |
---|---|---|
committer | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-05-23 10:38:02 +0000 |
commit | f5c0093da9c466df97e0049b4dc4251e12f04faf (patch) | |
tree | c7ae28f30c3d112192b973ffc9c480d7bd0a8568 /engine/start.php | |
parent | d28d94b3a8e19ba3cbf79db042d6f786f50e27b2 (diff) | |
download | elgg-f5c0093da9c466df97e0049b4dc4251e12f04faf.tar.gz elgg-f5c0093da9c466df97e0049b4dc4251e12f04faf.tar.bz2 |
Marcus Povey <marcus@dushka.co.uk>
* System log event code
git-svn-id: https://code.elgg.org/elgg/trunk@691 36083f99-b078-4883-b0ff-0f9b5a30f544
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
|