svn commit: r812465 - /ofbiz/trunk/framework/widget/templates/htmlFormMacroLibrary.ftl

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r812465 - /ofbiz/trunk/framework/widget/templates/htmlFormMacroLibrary.ftl

lektran
Author: lektran
Date: Tue Sep  8 11:24:23 2009
New Revision: 812465

URL: http://svn.apache.org/viewvc?rev=812465&view=rev
Log:
It's invalid to render a select element without any option elements

Modified:
    ofbiz/trunk/framework/widget/templates/htmlFormMacroLibrary.ftl

Modified: ofbiz/trunk/framework/widget/templates/htmlFormMacroLibrary.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/widget/templates/htmlFormMacroLibrary.ftl?rev=812465&r1=812464&r2=812465&view=diff
==============================================================================
--- ofbiz/trunk/framework/widget/templates/htmlFormMacroLibrary.ftl (original)
+++ ofbiz/trunk/framework/widget/templates/htmlFormMacroLibrary.ftl Tue Sep  8 11:24:23 2009
@@ -130,7 +130,7 @@
  <option selected="selected" value="${currentValue}">${explicitDescription}</option><#rt/>
  <option value="${currentValue}">---</option><#rt/>
 </#if>
-<#if allowEmpty?has_content>
+<#if allowEmpty?has_content || !options?has_content>
 <option value="">&nbsp;</option>
 </#if>
 <#list options as item>