Author: buscob
Date: Sat Apr 10 14:21:05 2010
New Revision: 932730

URL: http://svn.apache.org/viewvc?rev=932730&view=rev
Log:
A patch from Blas Rodriguez Somoza
OFBIZ-3616 - XHTML validation errors (specialpurpose_hhfacility)
https://issues.apache.org/jira/browse/OFBIZ-3616

XHTML validation errors

    * Unclosed INPUT
    * Unencoded ampersands in urls.

Modified:
    ofbiz/trunk/specialpurpose/hhfacility/webapp/hhfacility/login.ftl
    ofbiz/trunk/specialpurpose/hhfacility/webapp/hhfacility/productstocktake.ftl

Modified: ofbiz/trunk/specialpurpose/hhfacility/webapp/hhfacility/login.ftl
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/hhfacility/webapp/hhfacility/login.ftl?rev=932730&r1=932729&r2=932730&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/hhfacility/webapp/hhfacility/login.ftl (original)
+++ ofbiz/trunk/specialpurpose/hhfacility/webapp/hhfacility/login.ftl Sat Apr 
10 14:21:05 2010
@@ -51,7 +51,7 @@ under the License.
                           <span>Username&nbsp;</span>
                         </td>
                         <td>
-                          <input type="text" name="USERNAME" 
value="${username}" size="20">
+                          <input type="text" name="USERNAME" 
value="${username}" size="20" />
                         </td>
                       </tr>
                       <tr>
@@ -59,13 +59,13 @@ under the License.
                           <span>Password&nbsp;</span>
                         </td>
                         <td>
-                          <input type="password" name="PASSWORD" value="" 
size="20">
+                          <input type="password" name="PASSWORD" value="" 
size="20" />
                         </td>
                       </tr>
                       <tr>
                         <td colspan="2" align="center">
                           <!--<a href="javascript:document.loginform.submit()" 
class="buttontext">[Login]</a>-->
-                          <input type="submit" value="Login" 
class="loginButton">
+                          <input type="submit" value="Login" 
class="loginButton" />
                         </td>
                       </tr>
                     </table>

Modified: 
ofbiz/trunk/specialpurpose/hhfacility/webapp/hhfacility/productstocktake.ftl
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/hhfacility/webapp/hhfacility/productstocktake.ftl?rev=932730&r1=932729&r2=932730&view=diff
==============================================================================
--- 
ofbiz/trunk/specialpurpose/hhfacility/webapp/hhfacility/productstocktake.ftl 
(original)
+++ 
ofbiz/trunk/specialpurpose/hhfacility/webapp/hhfacility/productstocktake.ftl 
Sat Apr 10 14:21:05 2010
@@ -21,9 +21,9 @@ under the License.
 
 <span>
 <#if negativeQOH?has_content>
-    <a 
href="<@ofbizUrl>/fixproductnegativeqoh?facilityId=${facility.facilityId?if_exists}&productId=${product.productId?if_exists}</@ofbizUrl>">Fix
 negative QOH</a>
+    <a 
href="<@ofbizUrl>/fixproductnegativeqoh?facilityId=${facility.facilityId?if_exists}&amp;productId=${product.productId?if_exists}</@ofbizUrl>">Fix
 negative QOH</a>
 </#if>
-    <a 
href="<@ofbizUrl>/productstocktake?facilityId=${facility.facilityId?if_exists}&productId=${product.productId?if_exists}</@ofbizUrl>">Refresh</a>
+    <a 
href="<@ofbizUrl>/productstocktake?facilityId=${facility.facilityId?if_exists}&amp;productId=${product.productId?if_exists}</@ofbizUrl>">Refresh</a>
 
 <#--    <ol>
     Display of edit box for barcode


Reply via email to