aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/textformatter
diff options
context:
space:
mode:
authorJoshyPHP <s9e.dev@gmail.com>2015-05-15 02:12:52 +0200
committerJoshyPHP <s9e.dev@gmail.com>2015-05-15 02:12:52 +0200
commitf7ad2c2b32b309edba006a8d4b58727b50642ea2 (patch)
tree247dbbe4bb98b5f287c7a1463260417ee13efc37 /phpBB/phpbb/textformatter
parentf5ce9f273829ba470a1348b4314cddb58f552da0 (diff)
downloadforums-f7ad2c2b32b309edba006a8d4b58727b50642ea2.tar
forums-f7ad2c2b32b309edba006a8d4b58727b50642ea2.tar.gz
forums-f7ad2c2b32b309edba006a8d4b58727b50642ea2.tar.bz2
forums-f7ad2c2b32b309edba006a8d4b58727b50642ea2.tar.xz
forums-f7ad2c2b32b309edba006a8d4b58727b50642ea2.zip
[ticket/13680] Renamed get_quote_authors to get_outermost_quote_authors
PHPBB3-13680
Diffstat (limited to 'phpBB/phpbb/textformatter')
-rw-r--r--phpBB/phpbb/textformatter/s9e/utils.php4
-rw-r--r--phpBB/phpbb/textformatter/utils_interface.php4
2 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/phpbb/textformatter/s9e/utils.php b/phpBB/phpbb/textformatter/s9e/utils.php
index 576ab9481c..e21dedecc4 100644
--- a/phpBB/phpbb/textformatter/s9e/utils.php
+++ b/phpBB/phpbb/textformatter/s9e/utils.php
@@ -35,12 +35,12 @@ class utils implements \phpbb\textformatter\utils_interface
}
/**
- * Get a list of quote authors, limited to the first level of quotes
+ * Get a list of quote authors, limited to the outermost quotes
*
* @param string $xml Parsed text
* @return string[] List of authors
*/
- public function get_quote_authors($xml)
+ public function get_outermost_quote_authors($xml)
{
$authors = array();
if (strpos($xml, '<QUOTE ') === false)
diff --git a/phpBB/phpbb/textformatter/utils_interface.php b/phpBB/phpbb/textformatter/utils_interface.php
index 183c426161..6d3fd13021 100644
--- a/phpBB/phpbb/textformatter/utils_interface.php
+++ b/phpBB/phpbb/textformatter/utils_interface.php
@@ -29,12 +29,12 @@ interface utils_interface
public function clean_formatting($text);
/**
- * Get a list of quote authors, limited to the first level of quotes
+ * Get a list of quote authors, limited to the outermost quotes
*
* @param string $text Parsed text
* @return string[] List of authors
*/
- public function get_quote_authors($text);
+ public function get_outermost_quote_authors($text);
/**
* Remove given BBCode and its content, at given nesting depth