Revision: 375
Author:   tfenne
Date:     2006-08-13 19:41:52 -0700 (Sun, 13 Aug 2006)
ViewCVS:  http://svn.sourceforge.net/stripes/?rev=375&view=rev

Log Message:
-----------
Fixed a stupid bug introduced in the sorting code for options collections/enums.

Modified Paths:
--------------
    trunk/stripes/src/net/sourceforge/stripes/tag/InputOptionsCollectionTag.java
Modified: 
trunk/stripes/src/net/sourceforge/stripes/tag/InputOptionsCollectionTag.java
===================================================================
--- 
trunk/stripes/src/net/sourceforge/stripes/tag/InputOptionsCollectionTag.java    
    2006-08-13 20:50:36 UTC (rev 374)
+++ 
trunk/stripes/src/net/sourceforge/stripes/tag/InputOptionsCollectionTag.java    
    2006-08-14 02:41:52 UTC (rev 375)
@@ -240,7 +240,7 @@
 
         for (Entry entry : sortedEntries) {
             tag.setLabel(entry.label.toString());
-            tag.setValue(value);
+            tag.setValue(entry.value);
             tag.doStartTag();
             tag.doInitBody();
             tag.doAfterBody();


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


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Stripes-development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-development

Reply via email to