diff options
author | Oliver Schramm <oliver.schramm97@gmail.com> | 2015-10-29 01:48:52 +0100 |
---|---|---|
committer | Oliver Schramm <oliver.schramm97@gmail.com> | 2015-11-03 16:35:53 +0100 |
commit | 2016550a32168ee5fcf11bfdd367ce48fbcf88b1 (patch) | |
tree | 7f38f6ef56e624f917d2e568fc143e463db0c7b4 /phpBB/phpbb/textreparser/plugins/forum_rules.php | |
parent | 8b7f711a184220928f42d5ec079af18d259981d0 (diff) | |
download | forums-2016550a32168ee5fcf11bfdd367ce48fbcf88b1.tar forums-2016550a32168ee5fcf11bfdd367ce48fbcf88b1.tar.gz forums-2016550a32168ee5fcf11bfdd367ce48fbcf88b1.tar.bz2 forums-2016550a32168ee5fcf11bfdd367ce48fbcf88b1.tar.xz forums-2016550a32168ee5fcf11bfdd367ce48fbcf88b1.zip |
[ticket/14264] Don't use constants as return values
This will prevent BC breaking in the future if we decide to
get rid of constants.
PHPBB3-14264
Diffstat (limited to 'phpBB/phpbb/textreparser/plugins/forum_rules.php')
-rw-r--r-- | phpBB/phpbb/textreparser/plugins/forum_rules.php | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/phpBB/phpbb/textreparser/plugins/forum_rules.php b/phpBB/phpbb/textreparser/plugins/forum_rules.php index ce550225f2..d131d00707 100644 --- a/phpBB/phpbb/textreparser/plugins/forum_rules.php +++ b/phpBB/phpbb/textreparser/plugins/forum_rules.php @@ -27,12 +27,4 @@ class forum_rules extends \phpbb\textreparser\row_based_plugin 'options' => 'forum_rules_options', ); } - - /** - * {@inheritdoc} - */ - public function get_table_name() - { - return FORUMS_TABLE; - } } |