diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-18 18:49:04 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-18 18:49:04 +0000 |
commit | cff1ffacfb5a757df36eab3a81862e1ee83ca0e5 (patch) | |
tree | e97f6329e57b1ecffa1dda339459315ad57072ee | |
parent | 951d084b015bcb86019180d270297efaae635b2e (diff) | |
download | elgg-cff1ffacfb5a757df36eab3a81862e1ee83ca0e5.tar.gz elgg-cff1ffacfb5a757df36eab3a81862e1ee83ca0e5.tar.bz2 |
Fixes #2943: Removed engine/lib/install.php
git-svn-id: http://code.elgg.org/elgg/trunk@8290 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | engine/lib/install.php | 12 | ||||
-rw-r--r-- | engine/start.php | 3 |
2 files changed, 1 insertions, 14 deletions
diff --git a/engine/lib/install.php b/engine/lib/install.php deleted file mode 100644 index a5fa8acb7..000000000 --- a/engine/lib/install.php +++ /dev/null @@ -1,12 +0,0 @@ -<?php - -/** - * Elgg installation - * Various functions to assist with installing and upgrading the system - * - * @package Elgg.Core - * @subpackage Installation - */ - - - diff --git a/engine/start.php b/engine/start.php index f8c06e10f..850fba216 100644 --- a/engine/start.php +++ b/engine/start.php @@ -60,8 +60,7 @@ $lib_dir = dirname(__FILE__) . '/lib/'; */ $required_files = array( 'elgglib.php', 'views.php', 'access.php', 'system_log.php', 'export.php', - 'sessions.php', 'languages.php', 'input.php', 'install.php', 'cache.php', - 'output.php' + 'sessions.php', 'languages.php', 'input.php', 'cache.php', 'output.php' ); // include bootstraping libs |