You are viewing a plain text version of this content. The canonical link for it is here.
Posted to apreq-cvs@httpd.apache.org by pg...@apache.org on 2008/11/27 07:36:50 UTC

svn commit: r721096 - /httpd/apreq/trunk/glue/perl/lib/Apache2/Request.pm

Author: pgollucci
Date: Wed Nov 26 22:36:49 2008
New Revision: 721096

URL: http://svn.apache.org/viewvc?rev=721096&view=rev
Log:
Note param() change from 1.x series

Submitted by: Adam Prime
Tweaked by: pgollucci


Modified:
    httpd/apreq/trunk/glue/perl/lib/Apache2/Request.pm

Modified: httpd/apreq/trunk/glue/perl/lib/Apache2/Request.pm
URL: http://svn.apache.org/viewvc/httpd/apreq/trunk/glue/perl/lib/Apache2/Request.pm?rev=721096&r1=721095&r2=721096&view=diff
==============================================================================
--- httpd/apreq/trunk/glue/perl/lib/Apache2/Request.pm (original)
+++ httpd/apreq/trunk/glue/perl/lib/Apache2/Request.pm Wed Nov 26 22:36:49 2008
@@ -399,7 +399,7 @@
 addressed when porting 1.X apps to the new 2.X API.
 
 
-=over 4
+=over 5
 
 =item * Apache2::Upload is now a separate module.  Applications
         requiring the upload API must C<use Apache2::Upload> in 2.X.
@@ -417,6 +417,10 @@
 =item * C<param> includes the functionality of C<parms()> and C<params()>, so
         they are now deprecated and may be removed from a future 2.X release.
 
+=item * C<param> called in a list context no longer returns a unique list of
+        paramaters.  The returned list contains multiple instances of the 
+        parameter name for multivalued fields.
+
 =back