From 970345b08631841977e242e0dd675bcd8303975b Mon Sep 17 00:00:00 2001 From: Nick Spiel Date: Wed, 16 Sep 2015 18:02:51 +1000 Subject: [PATCH] Changed extractTags from protected to public --- parsers/ShortcodeParser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parsers/ShortcodeParser.php b/parsers/ShortcodeParser.php index 1087048aa..07397af21 100644 --- a/parsers/ShortcodeParser.php +++ b/parsers/ShortcodeParser.php @@ -204,7 +204,7 @@ class ShortcodeParser { * @return array - The list of tags found. When using an open/close pair, only one item will be in the array, * with "content" set to the text between the tags */ - protected function extractTags($content) { + public function extractTags($content) { $tags = array(); if(preg_match_all(self::tagrx(), $content, $matches, PREG_SET_ORDER | PREG_OFFSET_CAPTURE)) {