diff options
author | Oleg Pudeyev <oleg@bsdpower.com> | 2012-03-17 22:45:27 -0400 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2012-03-18 02:48:55 -0400 |
commit | 0af7d610c08307fbe8df20e0d44e54dcb9429d64 (patch) | |
tree | 308927177bf52c7fe83c90378312d07d5c42ab91 /phpBB | |
parent | ae984025f0575554bb78fef9dcf66233748e97c8 (diff) | |
download | forums-0af7d610c08307fbe8df20e0d44e54dcb9429d64.tar forums-0af7d610c08307fbe8df20e0d44e54dcb9429d64.tar.gz forums-0af7d610c08307fbe8df20e0d44e54dcb9429d64.tar.bz2 forums-0af7d610c08307fbe8df20e0d44e54dcb9429d64.tar.xz forums-0af7d610c08307fbe8df20e0d44e54dcb9429d64.zip |
[feature/event-dispatcher] Delete hard dependency on composer.
Applications should not depend on package managers.
PHPBB3-9550
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/common.php | 2 | ||||
-rw-r--r-- | phpBB/download/file.php | 2 | ||||
-rw-r--r-- | phpBB/install/database_update.php | 2 | ||||
-rw-r--r-- | phpBB/install/index.php | 2 |
4 files changed, 0 insertions, 8 deletions
diff --git a/phpBB/common.php b/phpBB/common.php index c48418276a..132b95c1fe 100644 --- a/phpBB/common.php +++ b/phpBB/common.php @@ -72,8 +72,6 @@ if (!empty($load_extensions) && function_exists('dl')) } } -require($phpbb_root_path . 'vendor/.composer/autoload.php'); - // Include files require($phpbb_root_path . 'includes/class_loader.' . $phpEx); require($phpbb_root_path . 'includes/session.' . $phpEx); diff --git a/phpBB/download/file.php b/phpBB/download/file.php index 3f14a9cb82..2baa9d6c8a 100644 --- a/phpBB/download/file.php +++ b/phpBB/download/file.php @@ -38,8 +38,6 @@ if (isset($_GET['avatar'])) exit; } - require($phpbb_root_path . 'vendor/.composer/autoload.php'); - require($phpbb_root_path . 'includes/class_loader.' . $phpEx); require($phpbb_root_path . 'includes/db/' . $dbms . '.' . $phpEx); require($phpbb_root_path . 'includes/constants.' . $phpEx); diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index a1c8fe1ef9..843e8c2f23 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -82,8 +82,6 @@ if (!empty($load_extensions) && function_exists('dl')) } } -require($phpbb_root_path . 'vendor/.composer/autoload.php'); - // Include files require($phpbb_root_path . 'includes/class_loader.' . $phpEx); require($phpbb_root_path . 'includes/session.' . $phpEx); diff --git a/phpBB/install/index.php b/phpBB/install/index.php index 7e150c2519..9d003ba6ab 100644 --- a/phpBB/install/index.php +++ b/phpBB/install/index.php @@ -69,8 +69,6 @@ else } @ini_set('memory_limit', $mem_limit); -require($phpbb_root_path . 'vendor/.composer/autoload.php'); - // Include essential scripts require($phpbb_root_path . 'includes/class_loader.' . $phpEx); require($phpbb_root_path . 'includes/functions.' . $phpEx); |