aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
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/includes
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/includes')
-rw-r--r--phpBB/includes/extension/controller.php7
-rw-r--r--phpBB/includes/extension/controller_interface.php2
2 files changed, 1 insertions, 8 deletions
diff --git a/phpBB/includes/extension/controller.php b/phpBB/includes/extension/controller.php
index 6e47948156..8861ec2696 100644
--- a/phpBB/includes/extension/controller.php
+++ b/phpBB/includes/extension/controller.php
@@ -74,11 +74,4 @@ abstract class phpbb_extension_controller implements phpbb_extension_controller_
$this->phpEx = $phpEx;
$this->phpbb_root_path = $phpbb_root_path;
}
-
- /**
- * Handle the request to display a page from an extension
- *
- * @return null
- */
- abstract public function handle();
}
diff --git a/phpBB/includes/extension/controller_interface.php b/phpBB/includes/extension/controller_interface.php
index bcc8972db4..2b88925388 100644
--- a/phpBB/includes/extension/controller_interface.php
+++ b/phpBB/includes/extension/controller_interface.php
@@ -23,7 +23,7 @@ if (!defined('IN_PHPBB'))
interface phpbb_extension_controller_interface
{
/**
- * handle the request to display a page from an extension
+ * Handle the request to display a page from an extension
*
* @return null
*/