summaryrefslogtreecommitdiff
path: root/app/Core/Paginator.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2017-01-08 14:00:51 -0500
committerFrederic Guillot <fred@kanboard.net>2017-01-08 14:00:51 -0500
commitb3a450bace8461fb7989d5406b9d9ec644d7df4a (patch)
tree89827b899d4a3fad9d123750955a0fc4692de312 /app/Core/Paginator.php
parentea2cbb76d5d48ef8d2601fc33edc55c15929b963 (diff)
Display project analytics in modal box
Diffstat (limited to 'app/Core/Paginator.php')
-rw-r--r--app/Core/Paginator.php12
1 files changed, 9 insertions, 3 deletions
diff --git a/app/Core/Paginator.php b/app/Core/Paginator.php
index 046c539c..9075a713 100644
--- a/app/Core/Paginator.php
+++ b/app/Core/Paginator.php
@@ -374,7 +374,9 @@ class Paginator
'&larr; '.t('Previous'),
$this->controller,
$this->action,
- $this->getUrlParams($this->page - 1, $this->order, $this->direction)
+ $this->getUrlParams($this->page - 1, $this->order, $this->direction),
+ false,
+ 'js-modal-replace'
);
} else {
$html .= '&larr; '.t('Previous');
@@ -400,7 +402,9 @@ class Paginator
t('Next').' &rarr;',
$this->controller,
$this->action,
- $this->getUrlParams($this->page + 1, $this->order, $this->direction)
+ $this->getUrlParams($this->page + 1, $this->order, $this->direction),
+ false,
+ 'js-modal-replace'
);
} else {
$html .= t('Next').' &rarr;';
@@ -486,7 +490,9 @@ class Paginator
$label,
$this->controller,
$this->action,
- $this->getUrlParams($this->page, $column, $direction)
+ $this->getUrlParams($this->page, $column, $direction),
+ false,
+ 'js-modal-replace'
);
}
}