Revision: 517
          http://svn.sourceforge.net/stripes/?rev=517&view=rev
Author:   bengunter
Date:     2007-04-02 07:49:03 -0700 (Mon, 02 Apr 2007)

Log Message:
-----------
merged fix for STS-328 from trunk

Modified Paths:
--------------
    
branches/1.4.x/stripes/src/net/sourceforge/stripes/controller/multipart/CommonsMultipartWrapper.java

Modified: 
branches/1.4.x/stripes/src/net/sourceforge/stripes/controller/multipart/CommonsMultipartWrapper.java
===================================================================
--- 
branches/1.4.x/stripes/src/net/sourceforge/stripes/controller/multipart/CommonsMultipartWrapper.java
        2007-04-02 14:43:18 UTC (rev 516)
+++ 
branches/1.4.x/stripes/src/net/sourceforge/stripes/controller/multipart/CommonsMultipartWrapper.java
        2007-04-02 14:49:03 UTC (rev 517)
@@ -78,7 +78,7 @@
                         values = new ArrayList<String>();
                         params.put(item.getFieldName(), values);
                     }
-                    values.add(item.getString());
+                    values.add(charset == null ? item.getString() : 
item.getString(charset));
                 }
                 // Else store the file param
                 else {


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Stripes-development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-development

Reply via email to