Skip to content
Snippets Groups Projects
Commit dcfbcf5c authored by Gerhard Killesreiter's avatar Gerhard Killesreiter
Browse files

#51303, Forms with form tokens fail validation for anonymous users when...

#51303, Forms with form tokens fail validation for anonymous users when caching is enabled, patch by chx
parent 5cfdac24
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -59,18 +59,23 @@ function element_children($element) {
*
*/
function drupal_get_form($form_id, &$form, $callback = NULL) {
global $form_values, $form_submitted;
global $form_values, $form_submitted, $user;
$form_values = array();
$form_submitted = FALSE;
$form['#type'] = 'form';
if (isset($form['#token'])) {
// Make sure that a private key is set:
if (!variable_get('drupal_private_key', '')) {
variable_set('drupal_private_key', mt_rand());
if (variable_get('cache', 0) && !$user->uid && $_SERVER['REQUEST_METHOD'] == 'GET') {
unset($form['#token']);
}
else {
// Make sure that a private key is set:
if (!variable_get('drupal_private_key', '')) {
variable_set('drupal_private_key', mt_rand());
}
$form['form_token'] = array('#type' => 'hidden', '#default_value' => md5(session_id() . $form['#token'] . variable_get('drupal_private_key', '')));
$form['form_token'] = array('#type' => 'hidden', '#default_value' => md5(session_id() . $form['#token'] . variable_get('drupal_private_key', '')));
}
}
if (isset($form_id)) {
$form['form_id'] = array('#type' => 'hidden', '#value' => $form_id);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment