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:40:33 UTC

svn commit: r721099 - in /httpd/apreq/branches/v2_10: ./ glue/perl/lib/Apache2/Request.pm

Author: pgollucci
Date: Wed Nov 26 22:40:33 2008
New Revision: 721099

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

Submitted by: Adam Prime
Tweaked by: pgollucci

Backport: 721096


Modified:
    httpd/apreq/branches/v2_10/   (props changed)
    httpd/apreq/branches/v2_10/glue/perl/lib/Apache2/Request.pm

Propchange: httpd/apreq/branches/v2_10/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Wed Nov 26 22:40:33 2008
@@ -1 +1 @@
-/httpd/apreq/trunk:688788
+/httpd/apreq/trunk:688788,721096

Modified: httpd/apreq/branches/v2_10/glue/perl/lib/Apache2/Request.pm
URL: http://svn.apache.org/viewvc/httpd/apreq/branches/v2_10/glue/perl/lib/Apache2/Request.pm?rev=721099&r1=721098&r2=721099&view=diff
==============================================================================
--- httpd/apreq/branches/v2_10/glue/perl/lib/Apache2/Request.pm (original)
+++ httpd/apreq/branches/v2_10/glue/perl/lib/Apache2/Request.pm Wed Nov 26 22:40:33 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