svn commit: r564733 - /ofbiz/trunk/framework/common/webcommon/includes/appbar.ftl

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

svn commit: r564733 - /ofbiz/trunk/framework/common/webcommon/includes/appbar.ftl

sichen
Author: sichen
Date: Fri Aug 10 12:47:27 2007
New Revision: 564733

URL: http://svn.apache.org/viewvc?view=rev&rev=564733
Log:
A small change which makes it possible to have a webapp mounted at / show up on the appbar correctly.  This worked ok for me but let me know if there are problems

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

Modified: ofbiz/trunk/framework/common/webcommon/includes/appbar.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/common/webcommon/includes/appbar.ftl?view=diff&rev=564733&r1=564732&r2=564733
==============================================================================
--- ofbiz/trunk/framework/common/webcommon/includes/appbar.ftl (original)
+++ ofbiz/trunk/framework/common/webcommon/includes/appbar.ftl Fri Aug 10 12:47:27 2007
@@ -40,7 +40,7 @@
           <#if thisApp == contextPath>
             <#assign selected = true>
           </#if>
-          <li<#if selected> class="selected"</#if>><a href="${response.encodeURL(thisApp + "/control/main" + externalKeyParam)}" title=""><#if uiLabelMap?exists>${uiLabelMap[display.title]}<#else>${display.title}</#if></a></li>
+          <li<#if selected> class="selected"</#if>><a href="${response.encodeURL(thisApp + externalKeyParam)}" title=""><#if uiLabelMap?exists>${uiLabelMap[display.title]}<#else>${display.title}</#if></a></li>
         </#if>
       </#list>
     </ul>