diff options
| author | Joas Schilling <nickvergessen@gmx.de> | 2014-04-17 16:33:12 +0200 |
|---|---|---|
| committer | Joas Schilling <nickvergessen@gmx.de> | 2014-04-18 13:07:41 +0200 |
| commit | 8f57880edb9fac353754976eeec0c1e0f1f2f502 (patch) | |
| tree | 1d8ec951beda6f4b0a7c0c684660fc795d1b6a07 /phpBB/includes/functions_posting.php | |
| parent | 7b5321092639b0f508fe160f5a58b834247982dd (diff) | |
| download | forums-8f57880edb9fac353754976eeec0c1e0f1f2f502.tar forums-8f57880edb9fac353754976eeec0c1e0f1f2f502.tar.gz forums-8f57880edb9fac353754976eeec0c1e0f1f2f502.tar.bz2 forums-8f57880edb9fac353754976eeec0c1e0f1f2f502.tar.xz forums-8f57880edb9fac353754976eeec0c1e0f1f2f502.zip | |
[ticket/12273] Fix missing $vars line
PHPBB3-12273
Diffstat (limited to 'phpBB/includes/functions_posting.php')
| -rw-r--r-- | phpBB/includes/functions_posting.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php index 638b94c220..df55c4540c 100644 --- a/phpBB/includes/functions_posting.php +++ b/phpBB/includes/functions_posting.php @@ -1497,7 +1497,8 @@ function submit_post($mode, $subject, $username, $topic_type, &$poll, &$data, $u * @var bool update_search_index Flag indicating if the search index will be updated * @since 3.1.0-a4 */ - extract($phpbb_dispatcher->trigger_event('core.modify_submit_post_data', compact(array('mode', 'subject', 'username', 'topic_type', 'poll', 'data', 'update_message', 'update_search_index')))); + $vars = array('mode', 'subject', 'username', 'topic_type', 'poll', 'data', 'update_message', 'update_search_index'); + extract($phpbb_dispatcher->trigger_event('core.modify_submit_post_data', compact($vars))); // We do not handle erasing posts here if ($mode == 'delete') |
