aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/textreparser/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb/textreparser/plugins')
-rw-r--r--phpBB/phpbb/textreparser/plugins/contact_admin_info.php2
-rw-r--r--phpBB/phpbb/textreparser/plugins/poll_option.php2
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