[ofbiz-plugins] branch release17.12 updated: Fixed: Product link on Order confirmation page is not responding (OFBIZ-11735)

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

[ofbiz-plugins] branch release17.12 updated: Fixed: Product link on Order confirmation page is not responding (OFBIZ-11735)

akashjain
This is an automated email from the ASF dual-hosted git repository.

akashjain pushed a commit to branch release17.12
in repository https://gitbox.apache.org/repos/asf/ofbiz-plugins.git


The following commit(s) were added to refs/heads/release17.12 by this push:
     new 2386d02  Fixed: Product link on Order confirmation page is not responding (OFBIZ-11735)
2386d02 is described below

commit 2386d02960956a9f4e04a3ef5b9ef126fa57f4ed
Author: Akash Jain <[hidden email]>
AuthorDate: Mon Aug 3 18:36:58 2020 +0530

    Fixed: Product link on Order confirmation page is not responding (OFBIZ-11735)
   
    Thanks, Rashi Dhagat for reporting.
---
 ecommerce/template/order/OrderItems.ftl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ecommerce/template/order/OrderItems.ftl b/ecommerce/template/order/OrderItems.ftl
index dc487bd..06305f5 100644
--- a/ecommerce/template/order/OrderItems.ftl
+++ b/ecommerce/template/order/OrderItems.ftl
@@ -152,7 +152,7 @@ under the License.
           <#else>
             <#assign product = orderItem.getRelatedOne("Product", true)!/> <#-- should always exist because of FK constraint, but just in case -->
             <td>
-              <a href="<@ofbizCatalogAltUrl fullPath="true" secure="false" productId=orderItem.productId/>"
+              <a href="<@ofbizCatalogAltUrl secure="false" productId=orderItem.productId/>"
                   class="linktext">${orderItem.productId} - ${orderItem.itemDescription?default("")}</a>
               <#assign orderItemAttributes = orderItem.getRelated("OrderItemAttribute", null, null, false)/>
               <#if orderItemAttributes?has_content>