From: Jonathan Rockway Date: Fri, 17 Nov 2006 16:53:42 +0000 (+0000) Subject: applying a documentation fix regarding file uploads from Carl Franks X-Git-Tag: 5.7099_04~267 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=84e7aa894ee4c95911a3c9d65fca859685ec794d applying a documentation fix regarding file uploads from Carl Franks --- diff --git a/lib/Catalyst/Request.pm b/lib/Catalyst/Request.pm index 7624db7..ce1a428 100644 --- a/lib/Catalyst/Request.pm +++ b/lib/Catalyst/Request.pm @@ -484,7 +484,8 @@ sub upload { =head2 $req->uploads Returns a reference to a hash containing uploads. Values can be either a -hashref or a arrayref containing L objects. +L object, or an arrayref of +L objects. my $upload = $c->request->uploads->{field}; my $upload = $c->request->uploads->{field}->[0];