merging 6.8.8 bugfix
This commit is contained in:
parent
510c1f5ca5
commit
1be24a0dc1
2 changed files with 2 additions and 1 deletions
|
|
@ -76,6 +76,7 @@
|
|||
- fix bugs with the in-memory session caching of user and group memberships
|
||||
|
||||
6.8.8
|
||||
- fix [ 1460992 ] Field Loop in DataForm (Thanks to Beat Boesiger)
|
||||
- fix [ 1423434 ] 6.8.5 - Versioning - users can see uncommitted data
|
||||
- fix [ 1437186 ] 6.8.7 deploy DataForm package does not copy fields
|
||||
- fix [ 1437563 ] Data picker intermittent for Admin
|
||||
|
|
|
|||
|
|
@ -470,7 +470,7 @@ sub getRecordTemplateVars {
|
|||
}
|
||||
|
||||
my @fields;
|
||||
my $sth = $self->session->db->read("$select from DataForm_field as a $join $where and a.DataForm_tabId = 0 order by a.sequenceNumber");
|
||||
my $sth = $self->session->db->read("select from DataForm_field as a $join $where and a.DataForm_tabId = '0' order by a.sequenceNumber");
|
||||
while (%data = $sth->hash) {
|
||||
my $formValue = $self->session->form->process($data{name});
|
||||
if ((not exists $data{value}) && $self->session->form->process("func") ne "editSave" && $self->session->form->process("func") ne "editFieldSave" && defined $formValue) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue