From 0f848460444b452dad1089844eb3e7f0045c0501 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 2 Oct 2018 20:44:28 +0200 Subject: [PATCH] Fix pagination view namespace --- Theme/Backend/department-list.tpl.php | 2 +- Theme/Backend/staff-list.tpl.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Theme/Backend/department-list.tpl.php b/Theme/Backend/department-list.tpl.php index 0bc0c5b..59c9273 100644 --- a/Theme/Backend/department-list.tpl.php +++ b/Theme/Backend/department-list.tpl.php @@ -14,7 +14,7 @@ * @var \phpOMS\Views\View $this */ -$footerView = new \Web\Views\Lists\PaginationView($this->app, $this->request, $this->response); +$footerView = new \phpOMS\Views\PaginationView($this->app, $this->request, $this->response); $footerView->setTemplate('/Web/Templates/Lists/Footer/PaginationBig'); $footerView->setPages(1 / 25); diff --git a/Theme/Backend/staff-list.tpl.php b/Theme/Backend/staff-list.tpl.php index f62571c..37ce9fe 100644 --- a/Theme/Backend/staff-list.tpl.php +++ b/Theme/Backend/staff-list.tpl.php @@ -14,7 +14,7 @@ * @var \phpOMS\Views\View $this */ -$footerView = new \Web\Views\Lists\PaginationView($this->app, $this->request, $this->response); +$footerView = new \phpOMS\Views\PaginationView($this->app, $this->request, $this->response); $footerView->setTemplate('/Web/Templates/Lists/Footer/PaginationBig'); $footerView->setPages(1 / 25);