Author: rjollos
Date: Sat Dec 15 04:06:05 2012
New Revision: 1422184

URL: http://svn.apache.org/viewvc?rev=1422184&view=rev
Log:
Added missing value attributes to option elements on the ticket quick create 
form. Refs #302.

Modified:
    
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html

Modified: 
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html
URL: 
http://svn.apache.org/viewvc/incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html?rev=1422184&r1=1422183&r2=1422184&view=diff
==============================================================================
--- 
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html
 (original)
+++ 
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html
 Sat Dec 15 04:06:05 2012
@@ -104,12 +104,14 @@
                 <option py:if="field.optional"></option>
                 <option py:for="option in field.options"
                         selected="${value == option or None}"
+                        value = "$option"
                         py:content="option"></option>
                 <optgroup py:for="optgroup in field.optgroups"
                           py:if="optgroup.options"
                           label="${optgroup.label}">
                   <option py:for="option in optgroup.options"
                           selected="${value == option or None}"
+                          value = "$option"
                           py:content="option"></option>
                 </optgroup>
               </select>


Reply via email to