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

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

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

jleroux@apache.org
Author: jleroux
Date: Fri Oct 27 10:23:18 2006
New Revision: 468463

URL: http://svn.apache.org/viewvc?view=rev&rev=468463
Log:
bug fix (in some cases geo.geoName does not exist)

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

Modified: incubator/ofbiz/trunk/applications/product/webapp/catalog/store/EditProductStoreShipSetup.ftl
URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/product/webapp/catalog/store/EditProductStoreShipSetup.ftl?view=diff&rev=468463&r1=468462&r2=468463
==============================================================================
--- incubator/ofbiz/trunk/applications/product/webapp/catalog/store/EditProductStoreShipSetup.ftl (original)
+++ incubator/ofbiz/trunk/applications/product/webapp/catalog/store/EditProductStoreShipSetup.ftl Fri Oct 27 10:23:18 2006
@@ -287,7 +287,7 @@
             <select name="fromGeo" class="selectBox">
               <option value="">${uiLabelMap.CommonAll}</option>
               <#list geoList as geo>
-                <option value="${geo.geoId}">${geo.geoName}</option>
+                <option value="${geo.geoId?if_exists}">${geo.geoName?if_exists}</option>
               </#list>
             </select>
           </td>
@@ -299,7 +299,7 @@
             <select name="toGeo" class="selectBox">
               <option value="">${uiLabelMap.CommonAll}</option>
               <#list geoList as geo>
-                <option value="${geo.geoId}">${geo.geoName}</option>
+                <option value="${geo.geoId?if_exists}">${geo.geoName?if_exists}</option>
               </#list>
             </select>
           </td>