You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by as...@apache.org on 2010/04/06 06:22:35 UTC

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

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";