You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2008/05/28 15:37:50 UTC

svn commit: r660949 - /cxf/trunk/rt/bindings/http/src/main/java/org/apache/cxf/binding/http/interceptor/URIParameterInInterceptor.java

Author: dkulp
Date: Wed May 28 06:37:50 2008
New Revision: 660949

URL: http://svn.apache.org/viewvc?rev=660949&view=rev
Log:
Merge jgenenders fix from the 2.0.x branch to trunk

Modified:
    cxf/trunk/rt/bindings/http/src/main/java/org/apache/cxf/binding/http/interceptor/URIParameterInInterceptor.java

Modified: cxf/trunk/rt/bindings/http/src/main/java/org/apache/cxf/binding/http/interceptor/URIParameterInInterceptor.java
URL: http://svn.apache.org/viewvc/cxf/trunk/rt/bindings/http/src/main/java/org/apache/cxf/binding/http/interceptor/URIParameterInInterceptor.java?rev=660949&r1=660948&r2=660949&view=diff
==============================================================================
--- cxf/trunk/rt/bindings/http/src/main/java/org/apache/cxf/binding/http/interceptor/URIParameterInInterceptor.java (original)
+++ cxf/trunk/rt/bindings/http/src/main/java/org/apache/cxf/binding/http/interceptor/URIParameterInInterceptor.java Wed May 28 06:37:50 2008
@@ -88,7 +88,7 @@
         MessagePartInfo part = parts.get(0);
 
         List<Param> params = null;
-        if ("application/x-www-form-urlencoded.".equals(contentType)) {
+        if ("application/x-www-form-urlencoded".equals(contentType)) {
             params = IriDecoderHelper.decode(path, location, message.getContent(InputStream.class));
         } else if ("application/xml".equals(contentType)) {
             params = IriDecoderHelper.decodeIri(path, location);