aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/textformatter/s9e/parser.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb/textformatter/s9e/parser.php')
-rw-r--r--phpBB/phpbb/textformatter/s9e/parser.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/phpbb/textformatter/s9e/parser.php b/phpBB/phpbb/textformatter/s9e/parser.php
index bf0e715ada..be717bb1c9 100644
--- a/phpBB/phpbb/textformatter/s9e/parser.php
+++ b/phpBB/phpbb/textformatter/s9e/parser.php
@@ -47,7 +47,8 @@ class parser implements \phpbb\textformatter\parser
$parser = $cache->get($key);
if (!$parser)
{
- extract($factory->regenerate());
+ $objects = $factory->regenerate();
+ $parser = $objects['parser'];
}
$this->parser = $parser;