Author: lektran
Date: Tue Mar 9 01:44:57 2010
New Revision: 920613
URL:
http://svn.apache.org/viewvc?rev=920613&view=revLog:
Fix funny encoding in the application menu links
Modified:
ofbiz/trunk/themes/tomahawk/includes/appbarOpen.ftl
Modified: ofbiz/trunk/themes/tomahawk/includes/appbarOpen.ftl
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/themes/tomahawk/includes/appbarOpen.ftl?rev=920613&r1=920612&r2=920613&view=diff==============================================================================
--- ofbiz/trunk/themes/tomahawk/includes/appbarOpen.ftl (original)
+++ ofbiz/trunk/themes/tomahawk/includes/appbarOpen.ftl Tue Mar 9 01:44:57 2010
@@ -57,7 +57,7 @@ under the License.
</#if>
<#assign thisURL = thisApp>
<#if thisApp != "/">
- <#assign thisURL = thisURL + "/control/main">
+ <#assign thisURL = StringUtil.wrapString(thisURL) + "/control/main">
</#if>
<#if layoutSettings.suppressTab?exists && display.name == layoutSettings.suppressTab>
<!-- do not display this component-->
@@ -86,7 +86,7 @@ under the License.
</#if>
<#assign thisURL = thisApp>
<#if thisApp != "/">
- <#assign thisURL = thisURL + "/control/main">
+ <#assign thisURL = StringUtil.wrapString(thisURL) + "/control/main">
</#if>
<#-- Show OFBiz Setup component menu bar when the system not have an organization -->
<#if thisApp.equals("/ofbizsetup")>