Skip Menu |

This queue is for tickets about the jQuery-File-Upload CPAN distribution.

Report information
The Basics
Id: 100318
Status: new
Priority: 0/
Queue: jQuery-File-Upload

People
Owner: Nobody in particular
Requestors: explorer [...] joaquinferrero.com
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.30
Fixed in: (no value)



Subject: handle_request call _clear, so print_response don't have nothing to print
Upload.pm: handle_request(): 748 $self->print_response if $print; 749 $self->_clear; If handle_request() is called with no args o 0, print_response() is called, and next, _clear(). _clear(): 888 $self->{output} = undef; _clear undefine 'output' key. Now: print_response(): 713 print "Content-type: $content_type\n\n"; 714 print $self->output and output() show the 'output' value, so print_response show nothing. So, print_response() don't work like docs said. Workround: use handle_request(1);
El Jue Nov 13 11:25:27 2014, explorer@joaquinferrero.com escribió: Show quoted text
> handle_request(): > 748 $self->print_response if $print; > 749 $self->_clear; > > If handle_request() is called with no args o 0, print_response() is > called, and next, _clear().
Typo... print_response() is NOT called.