merging 6.8.8 bugfixes

This commit is contained in:
Roy Johnson 2006-04-05 21:43:46 +00:00
parent e8d72011c9
commit f0c6a9e8f6
2 changed files with 2 additions and 0 deletions

View file

@ -78,6 +78,7 @@
- fix bugs with the in-memory session caching of user and group memberships
6.8.8
- fix [ 1452466 ] File size not set in File asset (Thanks to Eric S)
- 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

View file

@ -241,6 +241,7 @@ sub processPropertiesFromFormPost {
$data{menuTitle} = $filename unless ($self->session->form->process("menuTitle"));
$data{url} = $self->getParent->get('url').'/'.$filename unless ($self->session->form->process("url"));
$self->update(\%data);
$self->setSize($storage->getFileSize($filename));
}
}