You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2008/01/11 10:02:28 UTC

svn commit: r611113 - /ofbiz/branches/release4.0/applications/content/src/org/ofbiz/content/email/EmailServices.java

Author: jleroux
Date: Fri Jan 11 01:02:27 2008
New Revision: 611113

URL: http://svn.apache.org/viewvc?rev=611113&view=rev
Log:
Applied fix from trunk for revision: 610639

Modified:
    ofbiz/branches/release4.0/applications/content/src/org/ofbiz/content/email/EmailServices.java

Modified: ofbiz/branches/release4.0/applications/content/src/org/ofbiz/content/email/EmailServices.java
URL: http://svn.apache.org/viewvc/ofbiz/branches/release4.0/applications/content/src/org/ofbiz/content/email/EmailServices.java?rev=611113&r1=611112&r2=611113&view=diff
==============================================================================
--- ofbiz/branches/release4.0/applications/content/src/org/ofbiz/content/email/EmailServices.java (original)
+++ ofbiz/branches/release4.0/applications/content/src/org/ofbiz/content/email/EmailServices.java Fri Jan 11 01:02:27 2008
@@ -883,6 +883,7 @@
             } else {
                 commEventMap.put("statusId", "COM_UNKNOWN_PARTY");
             }
+            if (commNote.length() > 255) commNote = commNote.substring(0,255);
             
             if (!("".equals(commNote))) {
                 commEventMap.put("note", commNote);