aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoshyPHP <s9e.dev@gmail.com>2015-05-19 11:29:52 +0200
committerJoshyPHP <s9e.dev@gmail.com>2015-05-30 17:26:01 +0200
commit1bff7d1175cb92f10d9fc872c2bae05b1f955174 (patch)
tree7d8b00487abe4a40df5d0fce023d7039e01c8e50
parent75eb283f8d7a7afcd3945d0d28bd0f58aa4f0cd6 (diff)
downloadforums-1bff7d1175cb92f10d9fc872c2bae05b1f955174.tar
forums-1bff7d1175cb92f10d9fc872c2bae05b1f955174.tar.gz
forums-1bff7d1175cb92f10d9fc872c2bae05b1f955174.tar.bz2
forums-1bff7d1175cb92f10d9fc872c2bae05b1f955174.tar.xz
forums-1bff7d1175cb92f10d9fc872c2bae05b1f955174.zip
[ticket/13803] Fixed method name
PHPBB3-13803
-rw-r--r--phpBB/phpbb/textreparser/plugins/poll_title.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/textreparser/plugins/poll_title.php b/phpBB/phpbb/textreparser/plugins/poll_title.php
index 6665d68847..b447004527 100644
--- a/phpBB/phpbb/textreparser/plugins/poll_title.php
+++ b/phpBB/phpbb/textreparser/plugins/poll_title.php
@@ -29,7 +29,7 @@ class poll_title extends \phpbb\textreparser\row_based_plugin
/**
* {@inheritdoc}
*/
- protected function get_records_query($min_id, $max_id)
+ protected function get_records_by_range_query($min_id, $max_id)
{
$sql = 'SELECT t.topic_id AS id, t.poll_title AS text, p.bbcode_uid
FROM ' . TOPICS_TABLE . ' t, ' . POSTS_TABLE . ' p