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/poll_option.php | |
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/poll_option.php')
-rw-r--r-- | phpBB/phpbb/textreparser/plugins/poll_option.php | 2 |
1 files changed, 1 insertions, 1 deletions
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 |