diff options
author | JoshyPHP <s9e.dev@gmail.com> | 2015-05-19 09:48:29 +0200 |
---|---|---|
committer | JoshyPHP <s9e.dev@gmail.com> | 2015-05-30 17:26:01 +0200 |
commit | 75eb283f8d7a7afcd3945d0d28bd0f58aa4f0cd6 (patch) | |
tree | 26b4e880035bfe0f8258d9339e9cda8ea1e6f608 /phpBB/phpbb/textreparser/plugins | |
parent | 54b18df084b845c058426b38e7ccfeb534d04ce0 (diff) | |
download | forums-75eb283f8d7a7afcd3945d0d28bd0f58aa4f0cd6.tar forums-75eb283f8d7a7afcd3945d0d28bd0f58aa4f0cd6.tar.gz forums-75eb283f8d7a7afcd3945d0d28bd0f58aa4f0cd6.tar.bz2 forums-75eb283f8d7a7afcd3945d0d28bd0f58aa4f0cd6.tar.xz forums-75eb283f8d7a7afcd3945d0d28bd0f58aa4f0cd6.zip |
[ticket/13803] Renamed methods
PHPBB3-13803
Diffstat (limited to 'phpBB/phpbb/textreparser/plugins')
-rw-r--r-- | phpBB/phpbb/textreparser/plugins/contact_admin_info.php | 2 | ||||
-rw-r--r-- | phpBB/phpbb/textreparser/plugins/poll_option.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/textreparser/plugins/contact_admin_info.php b/phpBB/phpbb/textreparser/plugins/contact_admin_info.php index d21ef89445..8910f2256b 100644 --- a/phpBB/phpbb/textreparser/plugins/contact_admin_info.php +++ b/phpBB/phpbb/textreparser/plugins/contact_admin_info.php @@ -41,7 +41,7 @@ class contact_admin_info extends \phpbb\textreparser\base /** * {@inheritdoc} */ - protected function get_records($min_id, $max_id) + protected function get_records_by_range($min_id, $max_id) { $values = $this->config_text->get_array(array( 'contact_admin_info', diff --git a/phpBB/phpbb/textreparser/plugins/poll_option.php b/phpBB/phpbb/textreparser/plugins/poll_option.php index 3249e21694..7b803146c4 100644 --- a/phpBB/phpbb/textreparser/plugins/poll_option.php +++ b/phpBB/phpbb/textreparser/plugins/poll_option.php @@ -46,7 +46,7 @@ class poll_option extends \phpbb\textreparser\base /** * {@inheritdoc} */ - protected function get_records($min_id, $max_id) + protected function get_records_by_range($min_id, $max_id) { $sql = 'SELECT o.topic_id, o.poll_option_id, o.poll_option_text AS text, p.bbcode_uid FROM ' . POLL_OPTIONS_TABLE . ' o, ' . TOPICS_TABLE . ' t, ' . POSTS_TABLE . ' p |