We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 31bad89 + 85b0d82 commit b7312f3Copy full SHA for b7312f3
Extend/Library/ORG/Util/Page.class.php
@@ -134,13 +134,13 @@ public function show() {
134
$page = ($nowCoolPage-1)*$this->rollPage+$i;
135
if($page!=$this->nowPage){
136
if($page<=$this->totalPages){
137
- $linkPage .= " <a href='".str_replace('__PAGE__',$page,$url)."'> ".$page." </a>";
+ $linkPage .= "<a href='".str_replace('__PAGE__',$page,$url)."'>".$page."</a>";
138
}else{
139
break;
140
}
141
142
if($this->totalPages != 1){
143
- $linkPage .= " <span class='current'>".$page."</span>";
+ $linkPage .= "<span class='current'>".$page."</span>";
144
145
146
@@ -150,4 +150,4 @@ public function show() {
150
return $pageStr;
151
152
153
-}
+}
0 commit comments