Author: adrianc
Date: Sun Oct 27 23:03:54 2013
New Revision: 1536217
URL:
http://svn.apache.org/r1536217Log:
Fixed a bug in htmlMenuMacroLibrary.ftl - menu title threw an exception.
Modified:
ofbiz/trunk/framework/widget/templates/htmlMenuMacroLibrary.ftl
Modified: ofbiz/trunk/framework/widget/templates/htmlMenuMacroLibrary.ftl
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/widget/templates/htmlMenuMacroLibrary.ftl?rev=1536217&r1=1536216&r2=1536217&view=diff==============================================================================
--- ofbiz/trunk/framework/widget/templates/htmlMenuMacroLibrary.ftl (original)
+++ ofbiz/trunk/framework/widget/templates/htmlMenuMacroLibrary.ftl Sun Oct 27 23:03:54 2013
@@ -58,7 +58,7 @@ under the License.
</#macro>
<#macro renderMenuItemBegin style toolTip linkStr containsNestedMenus>
- <li<#if style?has_content> class="${style}"</#if><#if toolTip?has_content> title="${title}"</#if>><#if linkStr?has_content>${linkStr}</#if><#if containsNestedMenus><ul></#if><#rt/>
+ <li<#if style?has_content> class="${style}"</#if><#if toolTip?has_content> title="${toolTip}"</#if>><#if linkStr?has_content>${linkStr}</#if><#if containsNestedMenus><ul></#if><#rt/>
</#macro>
<#macro renderMenuItemEnd containsNestedMenus>