code displays "NOTE: This is a DEMO store-front. Orders placed here will NOT be billed, and will NOT be fulfilled" even if ProductStore.isDemoStore returns "N"
----------------------------------------------------------------------------------------------------------------------------------------------------------------
Key: OFBIZ-1799
URL:
https://issues.apache.org/jira/browse/OFBIZ-1799 Project: OFBiz
Issue Type: Bug
Components: ecommerce
Affects Versions: Release Branch 4.0
Environment: all environments as this is coding bug
Reporter: chris
See checkoutreview.ftl and ordercomplete.ftl and quickAnonCheckoutReview.ftl.
Line reads :
<#if !isDemoStore?exists || isDemoStore><p>${uiLabelMap.OrderDemoFrontNote}.</p>
Should read
<#if !isDemoStore?exists && isDemoStore><p>${uiLabelMap.OrderDemoFrontNote}.</p>
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.