svn commit: r931008 - /ofbiz/trunk/specialpurpose/ebay/src/org/ofbiz/ebay/ProductsExportToEbay.java

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r931008 - /ofbiz/trunk/specialpurpose/ebay/src/org/ofbiz/ebay/ProductsExportToEbay.java

ashish-18
Author: ashish
Date: Tue Apr  6 04:22:35 2010
New Revision: 931008

URL: http://svn.apache.org/viewvc?rev=931008&view=rev
Log:
Applied patch from jira issue - OFBIZ-3644 - The eBay Auction Title sent from OFBiz is xml encoded, while eBay XML API doesn't support HTML/XML characters.
Thanks Mridul for the contribution.

Modified:
    ofbiz/trunk/specialpurpose/ebay/src/org/ofbiz/ebay/ProductsExportToEbay.java

Modified: ofbiz/trunk/specialpurpose/ebay/src/org/ofbiz/ebay/ProductsExportToEbay.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ebay/src/org/ofbiz/ebay/ProductsExportToEbay.java?rev=931008&r1=931007&r2=931008&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/ebay/src/org/ofbiz/ebay/ProductsExportToEbay.java (original)
+++ ofbiz/trunk/specialpurpose/ebay/src/org/ofbiz/ebay/ProductsExportToEbay.java Tue Apr  6 04:22:35 2010
@@ -194,7 +194,7 @@ public class ProductsExportToEbay {
 
                 appendRequesterCredentials(itemRequestElem, itemDocument, token);
 
-                String title = encoder.encode(prod.getString("internalName"));
+                String title = prod.getString("internalName");
                 String qnt = (String)context.get("quantity");
                 if (UtilValidate.isEmpty(qnt)) {
                     qnt = "1";