Author: jacopoc
Date: Tue Oct 16 23:57:43 2007
New Revision: 585399
URL:
http://svn.apache.org/viewvc?rev=585399&view=revLog:
Removed duplicated quote; thanks to Bilgin Ibryam for the patch OFBIZ-1344
Modified:
ofbiz/trunk/framework/widget/src/org/ofbiz/widget/html/HtmlFormRenderer.java
Modified: ofbiz/trunk/framework/widget/src/org/ofbiz/widget/html/HtmlFormRenderer.java
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/html/HtmlFormRenderer.java?rev=585399&r1=585398&r2=585399&view=diff==============================================================================
--- ofbiz/trunk/framework/widget/src/org/ofbiz/widget/html/HtmlFormRenderer.java (original)
+++ ofbiz/trunk/framework/widget/src/org/ofbiz/widget/html/HtmlFormRenderer.java Tue Oct 16 23:57:43 2007
@@ -2008,7 +2008,7 @@
buffer.append("<li class=\"").append(modelForm.getPaginateFirstStyle());
if (viewIndex > 0) {
buffer.append("\"><a href=\"");
- linkText = prepLinkText + 0 + anchor + "\"";
+ linkText = prepLinkText + 0 + anchor;
// - make the link
buffer.append(rh.makeLink(this.request, this.response, linkText)).append("\">").append(modelForm.getPaginateFirstLabel(context)).append("</a>");
} else {
@@ -2020,7 +2020,7 @@
buffer.append("<li class=\"").append(modelForm.getPaginatePreviousStyle());
if (viewIndex > 0) {
buffer.append("\"><a href=\"");
- linkText = prepLinkText + (viewIndex - 1) + anchor + "\"";
+ linkText = prepLinkText + (viewIndex - 1) + anchor;
// - make the link
buffer.append(rh.makeLink(this.request, this.response, linkText)).append("\">").append(modelForm.getPaginatePreviousLabel(context)).append("</a>");
} else {
@@ -2064,7 +2064,7 @@
buffer.append("<li class=\"").append(modelForm.getPaginateNextStyle());
if (highIndex < listSize) {
buffer.append("\"><a href=\"");
- linkText = prepLinkText + (viewIndex + 1) + anchor + "\"";
+ linkText = prepLinkText + (viewIndex + 1) + anchor;
// - make the link
buffer.append(rh.makeLink(this.request, this.response, linkText)).append("\">").append(modelForm.getPaginateNextLabel(context)).append("</a>");
} else {
@@ -2076,7 +2076,7 @@
buffer.append("<li class=\"").append(modelForm.getPaginateLastStyle());
if (highIndex < listSize) {
buffer.append("\"><a href=\"");
- linkText = prepLinkText + (page - 1) + anchor + "\"";
+ linkText = prepLinkText + (page - 1) + anchor;
// - make the link
buffer.append(rh.makeLink(this.request, this.response, linkText)).append("\">").append(modelForm.getPaginateLastLabel(context)).append("</a>");
} else {