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

- Patch #497504 by dakala, bjaspan | yched: rename #multiple to #cardinality in field forms.

parent 67f2c101
No related branches found
No related tags found
No related merge requests found
......@@ -452,7 +452,7 @@ function _field_invoke_multiple_default($op, $obj_type, $objects, &$a = NULL, &$
*
* // Only for 'single' widgets:
* '#theme' => 'field_multiple_value_form',
* '#multiple' => the field cardinality,
* '#cardinality' => the field cardinality,
* // One sub-array per copy of the widget, keyed by delta.
* 0 => array(
* '#title' => the title to be displayed by the widget,
......
......@@ -145,7 +145,7 @@ function field_multiple_value_form($field, $instance, $langcode, $items, &$form,
$form_element = array(
'#theme' => 'field_multiple_value_form',
'#multiple' => $field['cardinality'],
'#cardinality' => $field['cardinality'],
'#title' => $title,
'#required' => $instance['required'],
'#description' => $description,
......@@ -224,7 +224,7 @@ function field_multiple_value_form($field, $instance, $langcode, $items, &$form,
function theme_field_multiple_value_form($element) {
$output = '';
if ($element['#multiple'] > 1 || $element['#multiple'] == FIELD_CARDINALITY_UNLIMITED) {
if ($element['#cardinality'] > 1 || $element['#cardinality'] == FIELD_CARDINALITY_UNLIMITED) {
$table_id = $element['#field_name'] . '_values';
$order_class = $element['#field_name'] . '-delta-order';
$required = !empty($element['#required']) ? '<span class="form-required" title="' . t('This field is required. ') . '">*</span>' : '';
......
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