aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/index.php
diff options
context:
space:
mode:
authorIgor Wiedler <igor@wiedler.ch>2010-08-31 21:26:50 +0200
committerNils Adermann <naderman@naderman.de>2010-09-17 14:08:14 +0200
commit456de639123ae3da6320bed6140ab69ac9925e74 (patch)
tree599778c0a452f6180de82e13288f7b7ed8e686ac /phpBB/install/index.php
parentb3558b50786dd8a66e4c4011647c048612bbfa7f (diff)
downloadforums-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.php2
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