merging 6.8 bugfixes

This commit is contained in:
Roy Johnson 2006-02-12 20:32:09 +00:00
parent 05e8768766
commit d7e2264153
2 changed files with 2 additions and 1 deletions

View file

@ -49,6 +49,7 @@
- fix [ 1429299 ] RTE Collateral Functions Break when Prev Proxy Cache On
- fixed a bug where uploaded files would give an Auth Required regardless of
the user being in the view group or not (Martin Kamerbeek / Procolix)
- fix [ 1411210 ] HttpProxy Error (Thanks to Eric Kennedy for the patch)
6.8.5
- fix [ 1396957 ] Insufficient privileges check on the DataForm

View file

@ -262,7 +262,7 @@ sub view {
next if ($input_name !~ /^HttpProxy_/); # Skip non proxied form var's
$input_name =~ s/^HttpProxy_//;
my $uploadFile = $self->session->request->tmpFileName($self->session->form->process('HttpProxy_'.$input_name));
my $uploadFile = $self->session->request->upload($self->session->form->process('HttpProxy_'.$input_name));
if(-r $uploadFile) { # Found uploaded file
@formUpload=($uploadFile, qq/$self->session->form->process('HttpProxy_'.$input_name)/);
$formdata{$input_name}=\@formUpload;