morgand     01/07/18 17:44:53

  Modified:    httpclient/src/java/org/apache/commons/httpclient
                        HttpMethodBase.java
  Log:
  no message
  
  Revision  Changes    Path
  1.8       +5 -3      
jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/HttpMethodBase.java
  
  Index: HttpMethodBase.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/HttpMethodBase.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- HttpMethodBase.java       2001/07/18 21:00:02     1.7
  +++ HttpMethodBase.java       2001/07/19 00:44:53     1.8
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/HttpMethodBase.java,v
 1.7 2001/07/18 21:00:02 morgand Exp $
  - * $Revision: 1.7 $
  - * $Date: 2001/07/18 21:00:02 $
  + * $Header: 
/home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/HttpMethodBase.java,v
 1.8 2001/07/19 00:44:53 morgand Exp $
  + * $Revision: 1.8 $
  + * $Date: 2001/07/19 00:44:53 $
    *
    * ====================================================================
    *
  @@ -540,6 +540,8 @@
   
               if (requestString.indexOf("?") < 0) {
                   requestString += "?";
  +            } else if (requestString.indexOf("=") >= 0) {
  +                requestString += "&";
               }
   
               // Parsing parameters list
  
  
  

Reply via email to