diff options
author | Marc Alexander <admin@m-a-styles.de> | 2014-08-11 07:37:57 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2014-08-11 07:37:57 +0200 |
commit | c10c6bd34297afbf6b32f5047a85c33fa546c23d (patch) | |
tree | 542e1cbce87e3fe5a506277883f2a0f8b468f2ca /phpBB/includes/functions.php | |
parent | 48ce9f5e9d0730f508c10a88577ae7b7368a5449 (diff) | |
parent | b20af9a6d2ae7b05fc9912af84b0a6f955cf4556 (diff) | |
download | forums-c10c6bd34297afbf6b32f5047a85c33fa546c23d.tar forums-c10c6bd34297afbf6b32f5047a85c33fa546c23d.tar.gz forums-c10c6bd34297afbf6b32f5047a85c33fa546c23d.tar.bz2 forums-c10c6bd34297afbf6b32f5047a85c33fa546c23d.tar.xz forums-c10c6bd34297afbf6b32f5047a85c33fa546c23d.zip |
Merge pull request #2845 from rxu/ticket/12942
[ticket/12942] Add core.add_form_key core event
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index d7554588c5..dcdaf684c0 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -2540,7 +2540,7 @@ function check_link_hash($token, $link_name) */ function add_form_key($form_name) { - global $config, $template, $user; + global $config, $template, $user, $phpbb_dispatcher; $now = time(); $token_sid = ($user->data['user_id'] == ANONYMOUS && !empty($config['form_token_sid_guests'])) ? $user->session_id : ''; @@ -2551,6 +2551,27 @@ function add_form_key($form_name) 'form_token' => $token, )); + /** + * Perform additional actions on creation of the form token + * + * @event core.add_form_key + * @var string form_name The form name + * @var int now Current time timestamp + * @var string s_fields Generated hidden fields + * @var string token Form token + * @var string token_sid User session ID + * + * @since 3.1.0-RC3 + */ + $vars = array( + 'form_name', + 'now', + 's_fields', + 'token', + 'token_sid', + ); + extract($phpbb_dispatcher->trigger_event('core.add_form_key', compact($vars))); + $template->assign_vars(array( 'S_FORM_TOKEN' => $s_fields, )); |