fix 11988 dataform list view missing field control

This commit is contained in:
Doug Bell 2011-01-10 19:25:37 -06:00
parent 9be6da4d2a
commit 2808a19670
4 changed files with 8 additions and 0 deletions

View file

@ -30,6 +30,7 @@
- fixed #12004: SSO operation vulnerable to session fixation attacks
- fixed #11996: Mandatory field in Thingy saves empty
- fixed #11987: Map displays white text on white background
- fixed #11988: Dataform list view doesn't allow moving fields
7.10.6
- fixed #11974: Toolbar icons unclickable in Webkit using HTML5

Binary file not shown.

View file

@ -787,6 +787,7 @@ sub getListTemplateVars {
'field.label' => $fieldConfig->{$_}{label},
'field.isMailField' => $fieldConfig->{$_}{isMailField},
'field.type' => $fieldConfig->{$_}{type},
"field.controls" => $self->_fieldAdminIcons($fieldConfig->{$_}{name}),
}
} @{ $self->getFieldOrder };
$var->{field_loop} = \@fieldLoop;

View file

@ -1050,6 +1050,12 @@ be useful, others may not.|,
context => q{Help for template variable},
},
'add entry' => {
message => q{Add Entry},
lastUpdated => 0,
context => q{Label for link to add a new entry to the dataform},
},
};
1;