Skip to content

Commit afac87b

Browse files
authored
Add bottom pagination in search subscribers page (#831)
I noticed that in the Campaign listings there is bottom pagination already but I didn't see any when using the Search subscribers. I think it will be useful to add there also and it seems like a small change.
1 parent fcf2fcd commit afac87b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

public_html/lists/admin/inc/interfacelib.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -455,6 +455,9 @@ public function display($add_index = 0, $class = '')
455455
foreach ($this->elements as $element) {
456456
$html .= $this->listingElement($element);
457457
}
458+
if (!empty($this->insideNav)) {
459+
$html .= sprintf('<tr><td colspan="%d">%s</td></tr>', count($this->columns) + 1, $this->insideNav);
460+
}
458461
$html .= $this->listingEnd();
459462

460463
if ($this->usePanel) {

0 commit comments

Comments
 (0)