You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ad...@apache.org on 2010/12/29 00:25:55 UTC

svn commit: r1053478 - /ofbiz/trunk/framework/common/webcommon/includes/htmlTemplate.ftl

Author: adrianc
Date: Tue Dec 28 23:25:54 2010
New Revision: 1053478

URL: http://svn.apache.org/viewvc?rev=1053478&view=rev
Log:
Fixed a bug in htmlTemplate.ftl.

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

Modified: ofbiz/trunk/framework/common/webcommon/includes/htmlTemplate.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/common/webcommon/includes/htmlTemplate.ftl?rev=1053478&r1=1053477&r2=1053478&view=diff
==============================================================================
--- ofbiz/trunk/framework/common/webcommon/includes/htmlTemplate.ftl (original)
+++ ofbiz/trunk/framework/common/webcommon/includes/htmlTemplate.ftl Tue Dec 28 23:25:54 2010
@@ -55,22 +55,22 @@ under the License.
         <#local javaScriptEnabled = Static["org.ofbiz.base.util.UtilHttp"].isJavaScriptEnabled(request) />
     </#if>
     <#if (commonUrl?has_content)>
-        <#if (!firstUr?has_content)>
+        <#if (!firstUrl?has_content)>
             <#local firstUrl=commonUrl+"VIEW_SIZE=${viewSize}&amp;VIEW_INDEX=${viewIndexFirst}"/>
         </#if>
         <#if (!previousUrl?has_content)>
              <#local previousUrl=commonUrl+"VIEW_SIZE=${viewSize}&amp;VIEW_INDEX=${viewIndexPrevious}"/>
         </#if>
-        <#if (!firstUr?has_content)>
+        <#if (!firstUrl?has_content)>
             <#local nextUrl=commonUrl+"VIEW_SIZE=${viewSize}&amp;VIEW_INDEX=${viewIndexNext}"/>
         </#if>
-        <#if (!firstUr?has_content)>
+        <#if (!firstUrl?has_content)>
             <#local lastUrl=commonUrl+"VIEW_SIZE=${viewSize}&amp;VIEW_INDEX=${viewIndexLast}"/>
         </#if>
-        <#if (!firstUr?has_content)>
+        <#if (!firstUrl?has_content)>
             <#local selectUrl=commonUrl+"VIEW_SIZE=${viewSize}&amp;VIEW_INDEX="/>
         </#if>
-        <#if (!firstUr?has_content)>
+        <#if (!firstUrl?has_content)>
             <#local selectSizeUrl=commonUrl+"VIEW_SIZE='+this.value+'&amp;VIEW_INDEX=0"/>
         </#if>
     </#if>