diff options
author | David King <imkingdavid@gmail.com> | 2012-02-18 11:34:07 -0500 |
---|---|---|
committer | David King <imkingdavid@gmail.com> | 2012-03-19 09:12:32 -0400 |
commit | e5ce9646567e6b3441c21ab960f8a77f1281c72b (patch) | |
tree | 947d6277a0b980a479796b5a24da7d04a8ed36c0 /phpBB/index.php | |
parent | e45452d1b3d39220ebd9b20390b9cc23ef64d3dd (diff) | |
download | forums-e5ce9646567e6b3441c21ab960f8a77f1281c72b.tar forums-e5ce9646567e6b3441c21ab960f8a77f1281c72b.tar.gz forums-e5ce9646567e6b3441c21ab960f8a77f1281c72b.tar.bz2 forums-e5ce9646567e6b3441c21ab960f8a77f1281c72b.tar.xz forums-e5ce9646567e6b3441c21ab960f8a77f1281c72b.zip |
[ticket/10586] Copy/paste fail fixed
PHPBB3-10586
Diffstat (limited to 'phpBB/index.php')
-rw-r--r-- | phpBB/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/index.php b/phpBB/index.php index e6a472ce31..2500774f67 100644 --- a/phpBB/index.php +++ b/phpBB/index.php @@ -28,7 +28,7 @@ $user->setup('viewforum'); if ($ext = $request->variable('ext', '')) { // The class to load - $class = 'phpbb_ext_' . str_replace('/', '_', $name) . '_controller'; + $class = 'phpbb_ext_' . str_replace('/', '_', $ext) . '_controller'; // Make sure the specified extension is enabled // and that it has a controller class |