@@ -112,7 +112,7 @@ |
||
112 | 112 | if ($this->_showSortLink($headerAttributeName)) |
113 | 113 | { |
114 | 114 | $header->key = '<a class="sortable-header" href="' . (\request()->url() . '?' . $this->_buildSortQuery($headerAttributeName, $direction)) . '">' . |
115 | - $header->key . ' <span class="sort-symbol">' . $this->_sortingSymbols[$direction] . '</span></a>'; |
|
115 | + $header->key . ' <span class="sort-symbol">' . $this->_sortingSymbols[$direction] . '</span></a>'; |
|
116 | 116 | } |
117 | 117 | } |
118 | 118 |
@@ -84,12 +84,12 @@ |
||
84 | 84 | } |
85 | 85 | |
86 | 86 | return '<ul class="pagination">' . |
87 | - $this->_renderListItem($this->_currentPage - 1, $this->_getFirstPageUrl(), $this->_pageSymbols['first']) . |
|
88 | - $this->_renderListItem($this->_currentPage - 1, $this->_getPreviousPageUrl(), $this->_pageSymbols['previous']) . |
|
89 | - $this->_renderPageList() . |
|
90 | - $this->_renderListItem($this->_currentPage + 1, $this->_getNextPageUrl(), $this->_pageSymbols['next']) . |
|
91 | - $this->_renderListItem($this->_currentPage + 1, $this->_getLastPageUrl(), $this->_pageSymbols['last']) . |
|
92 | - '</ul>'; |
|
87 | + $this->_renderListItem($this->_currentPage - 1, $this->_getFirstPageUrl(), $this->_pageSymbols['first']) . |
|
88 | + $this->_renderListItem($this->_currentPage - 1, $this->_getPreviousPageUrl(), $this->_pageSymbols['previous']) . |
|
89 | + $this->_renderPageList() . |
|
90 | + $this->_renderListItem($this->_currentPage + 1, $this->_getNextPageUrl(), $this->_pageSymbols['next']) . |
|
91 | + $this->_renderListItem($this->_currentPage + 1, $this->_getLastPageUrl(), $this->_pageSymbols['last']) . |
|
92 | + '</ul>'; |
|
93 | 93 | } |
94 | 94 | |
95 | 95 | /** |