merging 6.8 bugfixes
This commit is contained in:
parent
05e8768766
commit
d7e2264153
2 changed files with 2 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue