diff --git a/docs/changelog/6.x.x.txt b/docs/changelog/6.x.x.txt index 9ca4f1242..7e3799bf7 100644 --- a/docs/changelog/6.x.x.txt +++ b/docs/changelog/6.x.x.txt @@ -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 diff --git a/lib/WebGUI/Asset/Wobject/HttpProxy.pm b/lib/WebGUI/Asset/Wobject/HttpProxy.pm index 41708c148..8f38d2285 100644 --- a/lib/WebGUI/Asset/Wobject/HttpProxy.pm +++ b/lib/WebGUI/Asset/Wobject/HttpProxy.pm @@ -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;