aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-04-17 16:33:12 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-04-18 13:07:41 +0200
commit8f57880edb9fac353754976eeec0c1e0f1f2f502 (patch)
tree1d8ec951beda6f4b0a7c0c684660fc795d1b6a07 /phpBB/mcp.php
parent[ticket/12273] Fix invalid @event and @since tags (diff)
downloadphpbb-8f57880edb9fac353754976eeec0c1e0f1f2f502.tar.gz
phpbb-8f57880edb9fac353754976eeec0c1e0f1f2f502.tar.bz2
phpbb-8f57880edb9fac353754976eeec0c1e0f1f2f502.zip
[ticket/12273] Fix missing $vars line
PHPBB3-12273
Diffstat (limited to 'phpBB/mcp.php')
-rw-r--r--phpBB/mcp.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/mcp.php b/phpBB/mcp.php
index 1449346deb..5676c399af 100644
--- a/phpBB/mcp.php
+++ b/phpBB/mcp.php
@@ -197,7 +197,8 @@ if ($quickmod)
* @var bool is_valid_action Flag indicating if the action was handled properly
* @since 3.1.0-a4
*/
- extract($phpbb_dispatcher->trigger_event('core.modify_quickmod_options', compact(array('module', 'action', 'is_valid_action'))));
+ $vars = array('module', 'action', 'is_valid_action');
+ extract($phpbb_dispatcher->trigger_event('core.modify_quickmod_options', compact($vars)));
if (!$is_valid_action)
{