Author: jleroux
Date: Sat Aug 21 18:53:29 2010
New Revision: 987813
URL:
http://svn.apache.org/viewvc?rev=987813&view=revLog:
A quick workaround for a bug reported by Matt Warnock on user ML
When I go to the latest trunk demo, ecommerce store page, in the "browse forums" section on the left side bottom, there is an error that starts with "Expression forum.contentName is undefined on line 26".
It does not fix the reason though, which is somewhere upstream
Modified:
ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/forum/forums.ftl
Modified: ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/forum/forums.ftl
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/forum/forums.ftl?rev=987813&r1=987812&r2=987813&view=diff==============================================================================
--- ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/forum/forums.ftl (original)
+++ ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/forum/forums.ftl Sat Aug 21 18:53:29 2010
@@ -23,7 +23,7 @@ under the License.
<ul class="browsecategorylist">
<#list forums as forum>
<li class="browsecategorytext">
- <a href="<@ofbizUrl>showforum?forumId=${forum.contentId}</@ofbizUrl>" class="browsecategorybutton">${forum.contentName}</a>
+ <a href="<@ofbizUrl>showforum?forumId=${forum.contentId}</@ofbizUrl>" class="browsecategorybutton">${forum.contentName!forum.contentId}</a>
</li>
</#list>
</ul>