diff options
| author | Igor Wiedler <igor@wiedler.ch> | 2010-08-31 21:26:50 +0200 |
|---|---|---|
| committer | Nils Adermann <naderman@naderman.de> | 2010-09-17 14:08:14 +0200 |
| commit | 456de639123ae3da6320bed6140ab69ac9925e74 (patch) | |
| tree | 599778c0a452f6180de82e13288f7b7ed8e686ac /phpBB/install/index.php | |
| parent | b3558b50786dd8a66e4c4011647c048612bbfa7f (diff) | |
| download | forums-456de639123ae3da6320bed6140ab69ac9925e74.tar forums-456de639123ae3da6320bed6140ab69ac9925e74.tar.gz forums-456de639123ae3da6320bed6140ab69ac9925e74.tar.bz2 forums-456de639123ae3da6320bed6140ab69ac9925e74.tar.xz forums-456de639123ae3da6320bed6140ab69ac9925e74.zip | |
[feature/request-class] Refactor request classes to use autoloading
All class names have been adjusted to use a phpbb_request prefix,
allowing them to be autoloaded.
Also introduces some improvements to autoloading in general.
PHPBB3-9716
Diffstat (limited to 'phpBB/install/index.php')
| -rw-r--r-- | phpBB/install/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/index.php b/phpBB/install/index.php index 5862e2e8d2..50f0a049f2 100644 --- a/phpBB/install/index.php +++ b/phpBB/install/index.php @@ -172,7 +172,7 @@ require($phpbb_root_path . 'includes/functions_install.' . $phpEx); $class_loader = new phpbb_class_loader($phpbb_root_path, '.' . $phpEx); $class_loader->register(); -$request = new phpbb_request(new phpbb_type_cast_helper()); +$request = new phpbb_request(); // make sure request_var uses this request instance request_var('', 0, false, false, $request); // "dependency injection" for a function |
