You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2013/03/13 11:37:59 UTC

svn commit: r1455870 - in /commons/proper/fileupload/trunk: RELEASE-NOTES.txt src/changes/changes.xml

Author: simonetripodi
Date: Wed Mar 13 10:37:58 2013
New Revision: 1455870

URL: http://svn.apache.org/r1455870
Log:
[FILEUPLOAD-229] included resolved issue in the changelist

Modified:
    commons/proper/fileupload/trunk/RELEASE-NOTES.txt
    commons/proper/fileupload/trunk/src/changes/changes.xml

Modified: commons/proper/fileupload/trunk/RELEASE-NOTES.txt
URL: http://svn.apache.org/viewvc/commons/proper/fileupload/trunk/RELEASE-NOTES.txt?rev=1455870&r1=1455869&r2=1455870&view=diff
==============================================================================
--- commons/proper/fileupload/trunk/RELEASE-NOTES.txt (original)
+++ commons/proper/fileupload/trunk/RELEASE-NOTES.txt Wed Mar 13 10:37:58 2013
@@ -69,6 +69,7 @@ Bug
  * [FILEUPLOAD-212] - Insecure request size checking
  * [FILEUPLOAD-214] - ServletFileUpload only accepts POST requests
  * [FILEUPLOAD-228] - (Servlet|Portlet)RequestContext#contentLength() must return request.getContentLength() if Content-length header is not available
+ * [FILEUPLOAD-229] - toLowerCase() is Locale-dependent; should use toLowerCase(Locale.ENGLISH) instead
 
 Improvement
 =============

Modified: commons/proper/fileupload/trunk/src/changes/changes.xml
URL: http://svn.apache.org/viewvc/commons/proper/fileupload/trunk/src/changes/changes.xml?rev=1455870&r1=1455869&r2=1455870&view=diff
==============================================================================
--- commons/proper/fileupload/trunk/src/changes/changes.xml (original)
+++ commons/proper/fileupload/trunk/src/changes/changes.xml Wed Mar 13 10:37:58 2013
@@ -118,6 +118,9 @@ The <action> type attribute can be add,u
       <action issue="FILEUPLOAD-228" dev="simonetripodi" type="fix" due-to="Thomas Neidhart">
         (Servlet|Portlet)RequestContext#contentLength() must return request.getContentLength() if Content-length header is not available
       </action>
+      <action issue="FILEUPLOAD-229" dev="simonetripodi" type="fix" due-to="seb">
+        toLowerCase() is Locale-dependent; should use toLowerCase(Locale.ENGLISH) instead
+      </action>
       <!-- Improvement -->
       <action issue="FILEUPLOAD-182" dev="simonetripodi" type="add" due-to="Chris Lott">
         Documentation: add simple HTML form example to fileupload user guide