aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/textreparser/base.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb/textreparser/base.php')
-rw-r--r--phpBB/phpbb/textreparser/base.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/phpbb/textreparser/base.php b/phpBB/phpbb/textreparser/base.php
index 47ac177e05..2b8cacb092 100644
--- a/phpBB/phpbb/textreparser/base.php
+++ b/phpBB/phpbb/textreparser/base.php
@@ -25,9 +25,9 @@ abstract class base implements reparser_interface
*
* @param integer $min_id Lower bound
* @param integer $max_id Upper bound
- * @return array Array of record
+ * @return array Array of records
*/
- abstract protected function get_records($min_id, $max_id);
+ abstract protected function get_records_by_range($min_id, $max_id);
/**
* {@inheritdoc}
@@ -161,7 +161,7 @@ abstract class base implements reparser_interface
*/
public function reparse_range($min_id, $max_id)
{
- foreach ($this->get_records($min_id, $max_id) as $record)
+ foreach ($this->get_records_by_range($min_id, $max_id) as $record)
{
$this->reparse_record($record);
}