diff options
| author | JoshyPHP <s9e.dev@gmail.com> | 2015-03-03 03:07:23 +0100 |
|---|---|---|
| committer | JoshyPHP <s9e.dev@gmail.com> | 2015-04-02 19:16:02 +0200 |
| commit | dc9a28d346370b38c10def92358170a5cef23b36 (patch) | |
| tree | 53badd41a09ba84c0cbd0a7964a33018ce677503 /phpBB/phpbb/textformatter/s9e/factory.php | |
| parent | 40340004aac7ac1752c90a1dbca1faa486e668b9 (diff) | |
| download | forums-dc9a28d346370b38c10def92358170a5cef23b36.tar forums-dc9a28d346370b38c10def92358170a5cef23b36.tar.gz forums-dc9a28d346370b38c10def92358170a5cef23b36.tar.bz2 forums-dc9a28d346370b38c10def92358170a5cef23b36.tar.xz forums-dc9a28d346370b38c10def92358170a5cef23b36.zip | |
[ticket/11768] Replaced extract() calls
PHPBB3-11768
Diffstat (limited to 'phpBB/phpbb/textformatter/s9e/factory.php')
| -rw-r--r-- | phpBB/phpbb/textformatter/s9e/factory.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/phpBB/phpbb/textformatter/s9e/factory.php b/phpBB/phpbb/textformatter/s9e/factory.php index 66dba14ac0..a5b3527822 100644 --- a/phpBB/phpbb/textformatter/s9e/factory.php +++ b/phpBB/phpbb/textformatter/s9e/factory.php @@ -308,8 +308,9 @@ class factory implements \phpbb\textformatter\cache unset($configurator->tags['censor:tag']); } - // Create $parser and $renderer - extract($configurator->finalize()); + $objects = $configurator->finalize(); + $parser = $objects['parser']; + $renderer = $objects['renderer']; // Cache the parser as-is $this->cache->put($this->cache_key_parser, $parser); |
