Skip to content
Snippets Groups Projects
Commit 61654466 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #45281 by flevour/chx: fixed problem with categories not being set properly validated.

parent 630e820e
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
...@@ -139,8 +139,9 @@ function drupal_submit_form($form_id, $form, $callback = NULL) { ...@@ -139,8 +139,9 @@ function drupal_submit_form($form_id, $form, $callback = NULL) {
function _form_validate($elements, $form_id = NULL) { function _form_validate($elements, $form_id = NULL) {
/* Validate the current input */ /* Validate the current input */
if (!$elements['#validated'] && ($elements['#input'] || isset($form_id))) { if (!$elements['#validated'] && ($elements['#input'] || isset($form_id))) {
// An empty checkbox returns 0 and an empty textfield returns '' so we use empty(). // An empty textfield returns '' so we use empty(). An empty checkbox
// Unfortunately, empty('0') returns TRUE so we need a special check for the '0' string. // and a textfield could return '0' and empty('0') returns TRUE so we
// need a special check for the '0' string.
if ($elements['#required'] && empty($elements['#value']) && $elements['#value'] !== '0') { if ($elements['#required'] && empty($elements['#value']) && $elements['#value'] !== '0') {
form_error($elements, t('%name field is required.', array('%name' => $elements['#title']))); form_error($elements, t('%name field is required.', array('%name' => $elements['#title'])));
} }
...@@ -273,7 +274,7 @@ function _form_builder($form_id, $form) { ...@@ -273,7 +274,7 @@ function _form_builder($form_id, $form) {
$form['#value'] = $edit; // normal element $form['#value'] = $edit; // normal element
} }
elseif (isset($form['#return_value'])) { elseif (isset($form['#return_value'])) {
$form['#value'] = 0; // checkbox unchecked $form['#value'] = '0'; // checkbox unchecked
} }
} }
if (!isset($form['#value'])) { if (!isset($form['#value'])) {
......
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