svn commit: r742034 - /ofbiz/trunk/framework/common/webcommon/includes/footer.ftl

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

svn commit: r742034 - /ofbiz/trunk/framework/common/webcommon/includes/footer.ftl

jonesde
Author: jonesde
Date: Sun Feb  8 09:40:32 2009
New Revision: 742034

URL: http://svn.apache.org/viewvc?rev=742034&view=rev
Log:
Fixed issue with links in footer caused by change to general html encoding in ftl files

Modified:
    ofbiz/trunk/framework/common/webcommon/includes/footer.ftl

Modified: ofbiz/trunk/framework/common/webcommon/includes/footer.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/common/webcommon/includes/footer.ftl?rev=742034&r1=742033&r2=742034&view=diff
==============================================================================
--- ofbiz/trunk/framework/common/webcommon/includes/footer.ftl (original)
+++ ofbiz/trunk/framework/common/webcommon/includes/footer.ftl Sun Feb  8 09:40:32 2009
@@ -47,7 +47,7 @@
         <#if thisApp != "/">
           <#assign thisURL = thisURL + "/control/main">
         </#if>
-        <a<#if selected> class="selected"</#if> href="${response.encodeURL(thisURL + externalKeyParam)}" <#if uiLabelMap?exists> title="${uiLabelMap[display.description]}">${uiLabelMap[display.title]}<#else> title="${display.description}"> ${display.title}</#if></a>
+        <a<#if selected> class="selected"</#if> href="${thisURL}${externalKeyParam}" <#if uiLabelMap?exists> title="${uiLabelMap[display.description]}">${uiLabelMap[display.title]}<#else> title="${display.description}"> ${display.title}</#if></a>
       </#if>
     </#list>
   </div>