diff options
author | David King <imkingdavid@gmail.com> | 2012-11-16 09:43:08 -0500 |
---|---|---|
committer | David King <imkingdavid@gmail.com> | 2012-11-16 17:05:55 -0500 |
commit | 74bc46049303952e5f16f61e9f63fa2eeaffbadc (patch) | |
tree | b860f4d24799481b31d07982b45a6c190f065a75 /phpBB/includes | |
parent | 76917558832b0102716448770f365585aac224e9 (diff) | |
download | forums-74bc46049303952e5f16f61e9f63fa2eeaffbadc.tar forums-74bc46049303952e5f16f61e9f63fa2eeaffbadc.tar.gz forums-74bc46049303952e5f16f61e9f63fa2eeaffbadc.tar.bz2 forums-74bc46049303952e5f16f61e9f63fa2eeaffbadc.tar.xz forums-74bc46049303952e5f16f61e9f63fa2eeaffbadc.zip |
[feature/controller] Rename improperly named controller exception class
PHPBB3-10864
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/controller/exception.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/controller/exception.php b/phpBB/includes/controller/exception.php index da2fefc600..faa8b6b584 100644 --- a/phpBB/includes/controller/exception.php +++ b/phpBB/includes/controller/exception.php @@ -19,6 +19,6 @@ if (!defined('IN_PHPBB')) * Controller exception class * @package phpBB3 */ -class phpbb_controller_provider extends RuntimeException +class phpbb_controller_exception extends RuntimeException { } |