Author: lektran
Date: Wed Mar 17 22:52:16 2010
New Revision: 924543
URL:
http://svn.apache.org/viewvc?rev=924543&view=revLog:
Added missing input tag closes
Modified:
ofbiz/trunk/framework/webtools/webapp/webtools/entity/FindGeneric.ftl
Modified: ofbiz/trunk/framework/webtools/webapp/webtools/entity/FindGeneric.ftl
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/webtools/webapp/webtools/entity/FindGeneric.ftl?rev=924543&r1=924542&r2=924543&view=diff==============================================================================
--- ofbiz/trunk/framework/webtools/webapp/webtools/entity/FindGeneric.ftl (original)
+++ ofbiz/trunk/framework/webtools/webapp/webtools/entity/FindGeneric.ftl Wed Mar 17 22:52:16 2010
@@ -17,7 +17,7 @@ specific language governing permissions
under the License.
-->
<form method="post" action="<@ofbizUrl>FindGeneric?entityName=${entityName}</@ofbizUrl>">
- <input type="hidden" name="find" value="true">
+ <input type="hidden" name="find" value="true"/>
<table class="basic-table hover-bar" cellspacing="0">
<tr class="header-row-2">
<td>${uiLabelMap.WebtoolsFieldName}</td>
@@ -31,13 +31,13 @@ under the License.
<td>${field.name}</td>
<td><#if field.isPk == 'Y'>*</#if></td>
<td>${field.javaType}, ${field.sqlType}</td>
- <td><input type="text" name="${field.name}" value="${field.param}" size="40"></td>
+ <td><input type="text" name="${field.name}" value="${field.param}" size="40"/></td>
</tr>
<#assign alt_row = !alt_row>
</#list>
<tr>
<td colspan="3"><h3>${uiLabelMap.WebtoolsToFindAll} ${entityName}, ${uiLabelMap.WebtoolsLeaveAllEntriesBlank}</h3></td>
- <td><input type="submit" value="${uiLabelMap.CommonFind}"></td>
+ <td><input type="submit" value="${uiLabelMap.CommonFind}"/></td>
</tr>
</table>
</form>