aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/index.php
diff options
context:
space:
mode:
authorDavid King <imkingdavid@gmail.com>2012-03-28 16:37:42 -0400
committerDavid King <imkingdavid@gmail.com>2012-03-28 16:37:42 -0400
commit7b091f18a83f4bc31fc00ef067b55db48137ef47 (patch)
tree4a8fd6c1f24fd38813f67ba9e0f1bb484de7dc9f /phpBB/index.php
parent7071110d9aaeaf19d8dccab72a69972b302ab77d (diff)
downloadforums-7b091f18a83f4bc31fc00ef067b55db48137ef47.tar
forums-7b091f18a83f4bc31fc00ef067b55db48137ef47.tar.gz
forums-7b091f18a83f4bc31fc00ef067b55db48137ef47.tar.bz2
forums-7b091f18a83f4bc31fc00ef067b55db48137ef47.tar.xz
forums-7b091f18a83f4bc31fc00ef067b55db48137ef47.zip
[ticket/10586] Remove handle() from abstract class, undo change in index.php
PHPBB3-10586
Diffstat (limited to 'phpBB/index.php')
-rw-r--r--phpBB/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/index.php b/phpBB/index.php
index 8b73f0008f..d71878a885 100644
--- a/phpBB/index.php
+++ b/phpBB/index.php
@@ -47,7 +47,7 @@ if ($ext = $request->variable('ext', ''))
$controller = new $class;
- if (!($controller instanceof phpbb_extension_controller))
+ if (!($controller instanceof phpbb_extension_controller_interface))
{
send_status_line(500, 'Internal Server Error');
trigger_error($user->lang('EXTENSION_CLASS_WRONG_TYPE', $class));