svn commit: r1569080 - in /ofbiz/branches/release11.04: ./ specialpurpose/ecommerce/webapp/ecommerce/blog/blogs.ftl

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

svn commit: r1569080 - in /ofbiz/branches/release11.04: ./ specialpurpose/ecommerce/webapp/ecommerce/blog/blogs.ftl

jleroux@apache.org
Author: jleroux
Date: Mon Feb 17 18:42:39 2014
New Revision: 1569080

URL: http://svn.apache.org/r1569080
Log:
"Applied fix from trunk for revision: 1569078"
------------------------------------------------------------------------
r1569078 | jleroux | 2014-02-17 19:36:55 +0100 (lun. 17 févr. 2014) | 2 lignes

Prevents a possible misconfiguration spotted on trunk demo:
Expression blog.contentName is undefined on line 31, column 116 in component://ecommerce/webapp/ecommerce/blog/blogs.ftl. The problematic instruction: ---------- ==> ${blog.contentName} [on line 31, column 114 in
------------------------------------------------------------------------


Modified:
    ofbiz/branches/release11.04/   (props changed)
    ofbiz/branches/release11.04/specialpurpose/ecommerce/webapp/ecommerce/blog/blogs.ftl

Propchange: ofbiz/branches/release11.04/
------------------------------------------------------------------------------
  Merged /ofbiz/trunk:r1569078

Modified: ofbiz/branches/release11.04/specialpurpose/ecommerce/webapp/ecommerce/blog/blogs.ftl
URL: http://svn.apache.org/viewvc/ofbiz/branches/release11.04/specialpurpose/ecommerce/webapp/ecommerce/blog/blogs.ftl?rev=1569080&r1=1569079&r2=1569080&view=diff
==============================================================================
--- ofbiz/branches/release11.04/specialpurpose/ecommerce/webapp/ecommerce/blog/blogs.ftl (original)
+++ ofbiz/branches/release11.04/specialpurpose/ecommerce/webapp/ecommerce/blog/blogs.ftl Mon Feb 17 18:42:39 2014
@@ -28,7 +28,7 @@ under the License.
     <ul class="browsecategorylist">
       <#list blogs as blog>
         <li class="browsecategorytext">
-          <a href="<@ofbizUrl>MainBlog?blogContentId=${blog.contentId}</@ofbizUrl>" class="browsecategorybutton">${blog.contentName}</a>
+          <a href="<@ofbizUrl>MainBlog?blogContentId=${blog.contentId}</@ofbizUrl>" class="browsecategorybutton">${blog.contentName!}</a>
         </li>
       </#list>
     </ul>