You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jo...@apache.org on 2010/10/11 15:20:20 UTC

svn commit: r1021337 - /ofbiz/trunk/applications/product/webapp/catalog/store/EditProductStoreShipSetup.ftl

Author: jonesde
Date: Mon Oct 11 13:20:20 2010
New Revision: 1021337

URL: http://svn.apache.org/viewvc?rev=1021337&view=rev
Log:
Small change to allow a null/empty productStoreId in the Product Store Ship Setup screen

Modified:
    ofbiz/trunk/applications/product/webapp/catalog/store/EditProductStoreShipSetup.ftl

Modified: ofbiz/trunk/applications/product/webapp/catalog/store/EditProductStoreShipSetup.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/webapp/catalog/store/EditProductStoreShipSetup.ftl?rev=1021337&r1=1021336&r2=1021337&view=diff
==============================================================================
--- ofbiz/trunk/applications/product/webapp/catalog/store/EditProductStoreShipSetup.ftl (original)
+++ ofbiz/trunk/applications/product/webapp/catalog/store/EditProductStoreShipSetup.ftl Mon Oct 11 13:20:20 2010
@@ -18,7 +18,7 @@ under the License.
 -->
 <form name="addscarr" method="post" action="<@o...@ofbizUrl>">
     <input type="hidden" name="newShipMethod" value="Y"/>
-    <input type="hidden" name="productStoreId" value="${productStoreId}"/>
+    <input type="hidden" name="productStoreId" value="${productStoreId?if_exists}"/>
     <table cellspacing="0" class="basic-table">
         <tr>
           <td align="right" class="label">${uiLabelMap.ProductCarrierShipmentMethod}</td>
@@ -38,4 +38,4 @@ under the License.
           </td>
         </tr>
     </table>
-</form>
\ No newline at end of file
+</form>