You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2013/02/09 13:57:36 UTC

svn commit: r1444356 - /ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/customer/viewreviews.ftl

Author: jleroux
Date: Sat Feb  9 12:57:36 2013
New Revision: 1444356

URL: http://svn.apache.org/r1444356
Log:
Fixes 2 issues I found by chance while browsing trunk demo

Modified:
    ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/customer/viewreviews.ftl

Modified: ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/customer/viewreviews.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/customer/viewreviews.ftl?rev=1444356&r1=1444355&r2=1444356&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/customer/viewreviews.ftl (original)
+++ ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/customer/viewreviews.ftl Sat Feb  9 12:57:36 2013
@@ -32,11 +32,11 @@ under the License.
       </tr>
       <#list reviews as review>
         <tr>
-          <td>${review.postedDateTime}</td>
+          <td>${review.postedDateTime!}</td>
           <td><a href="<@ofbizCatalogAltUrl productId=review.productId/>">${review.productId}</a></td>
           <td>${review.productReview!}</td>
           <td>${review.productRating}</td>
-          <td>${review.postedAnonymous}</td>
+          <td>${review.postedAnonymous!}</td>
           <td>${review.getRelatedOne("StatusItem", false).get("description", locale)}</td>
         </tr>
       </#list>