[Checkins] SVN: zope.formlib/trunk/ fix for HTML validation

David Glick davidglick at onenw.org
Tue Jun 15 22:35:20 EDT 2010


Log message for revision 113504:
  fix for HTML validation

Changed:
  U   zope.formlib/trunk/CHANGES.txt
  U   zope.formlib/trunk/src/zope/formlib/orderedSelectionList.pt

-=-
Modified: zope.formlib/trunk/CHANGES.txt
===================================================================
--- zope.formlib/trunk/CHANGES.txt	2010-06-15 18:47:13 UTC (rev 113503)
+++ zope.formlib/trunk/CHANGES.txt	2010-06-16 02:35:19 UTC (rev 113504)
@@ -5,6 +5,8 @@
 4.0.4 (unreleased)
 ==================
 
+- Fix validation of "multiple" attributes in orderedSelectionList.pt.
+
 4.0.3 (2010-05-06)
 ==================
 

Modified: zope.formlib/trunk/src/zope/formlib/orderedSelectionList.pt
===================================================================
--- zope.formlib/trunk/src/zope/formlib/orderedSelectionList.pt	2010-06-15 18:47:13 UTC (rev 113503)
+++ zope.formlib/trunk/src/zope/formlib/orderedSelectionList.pt	2010-06-16 02:35:19 UTC (rev 113504)
@@ -140,7 +140,7 @@
 <table border="0" class="ordered-selection-field">
   <tr>
     <td>
-      <select id="from" name="from" size="5" multiple=""
+      <select id="from" name="from" size="5" multiple="multiple"
           tal:attributes="name string:${view/name}.from;
                           id string:${view/name}.from;
                           size view/size"
@@ -162,7 +162,7 @@
           >&lt;-&nbsp;</button>
     </td>
     <td>
-      <select id="to" name="to" size="5" multiple=""
+      <select id="to" name="to" size="5" multiple="multiple"
           tal:attributes="name string:${view/name}.to;
                           id string:${view/name}.to;
                           size view/size">



More information about the checkins mailing list