DataForms can now export all non default fields
This commit is contained in:
parent
50f6670a1a
commit
36364b8b1a
2 changed files with 2 additions and 1 deletions
|
|
@ -43,6 +43,7 @@
|
|||
- fixed: WebGUI Password Recovery email subject hard-coded
|
||||
- rfe: Add url to list of attributes tracked in assetHistory
|
||||
- fixed: Article now only allows 2 files to be uploaded
|
||||
- fixed: DataForms can now export all non-default fields
|
||||
|
||||
7.5.22
|
||||
- fixed: Layout template now gets prepared correctly
|
||||
|
|
|
|||
|
|
@ -1219,7 +1219,7 @@ sub www_exportTab {
|
|||
my @exportRows;
|
||||
my $entries = $self->session->db->read("select * from DataForm_entry where assetId=?", [$self->getId]);
|
||||
my @exportFields;
|
||||
for my $field ( map { $self->getFieldConfig($_) } $self->getFieldOrder ) {
|
||||
for my $field ( map { $self->getFieldConfig($_) } @{$self->getFieldOrder} ) {
|
||||
next
|
||||
if $field->{isMailField} && !$self->get('mailData');
|
||||
push @exportFields, $field->{name};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue