diff options
| author | Igor Wiedler <igor@wiedler.ch> | 2012-03-11 15:14:13 +0100 |
|---|---|---|
| committer | Igor Wiedler <igor@wiedler.ch> | 2012-03-11 15:15:33 +0100 |
| commit | e02d92ac62fbe1dc08994444c18a7447d72c56e6 (patch) | |
| tree | ee96cc57586f4b3c4e2998d6ad0d747c5db189a7 /phpBB/download/file.php | |
| parent | 5dd5df46a497631b905f6595707b0d1b0c302749 (diff) | |
| download | forums-e02d92ac62fbe1dc08994444c18a7447d72c56e6.tar forums-e02d92ac62fbe1dc08994444c18a7447d72c56e6.tar.gz forums-e02d92ac62fbe1dc08994444c18a7447d72c56e6.tar.bz2 forums-e02d92ac62fbe1dc08994444c18a7447d72c56e6.tar.xz forums-e02d92ac62fbe1dc08994444c18a7447d72c56e6.zip | |
[feature/event-dispatcher] Use real EventDispatcher through composer
* replace the copy-pasta EventDispatcher with the real one from Symfony2
* use composer for managing this dependency, use composer autoloading
PHPBB3-9550
Diffstat (limited to 'phpBB/download/file.php')
| -rw-r--r-- | phpBB/download/file.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/download/file.php b/phpBB/download/file.php index 2baa9d6c8a..3f14a9cb82 100644 --- a/phpBB/download/file.php +++ b/phpBB/download/file.php @@ -38,6 +38,8 @@ 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); |
