1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-10 18:54:08 +02:00

[ticket/11768] Replaced extract() calls

PHPBB3-11768
This commit is contained in:
JoshyPHP
2015-03-03 03:07:23 +01:00
parent 40340004aa
commit dc9a28d346
3 changed files with 7 additions and 4 deletions

View File

@@ -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;