aboutsummaryrefslogtreecommitdiffstats
path: root/admin/post
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2021-07-02 20:32:17 +0200
committerThomas Lange <code@nerdmind.de>2021-07-02 20:32:17 +0200
commit299bff3d9e301d954731118c6526f422dc866e0d (patch)
treeb374b3c798e57853d2a11bdd090e59661e82adb4 /admin/post
parentf5f94531c9d5b369fdf9c287f63c41476496e5ee (diff)
downloadblog-299bff3d9e301d954731118c6526f422dc866e0d.tar.gz
blog-299bff3d9e301d954731118c6526f422dc866e0d.tar.xz
blog-299bff3d9e301d954731118c6526f422dc866e0d.zip
Use createPaginationTemplate also in admin area
Diffstat (limited to 'admin/post')
-rw-r--r--admin/post/index.php9
1 files changed, 3 insertions, 6 deletions
diff --git a/admin/post/index.php b/admin/post/index.php
index 43d960a..2da0f81 100644
--- a/admin/post/index.php
+++ b/admin/post/index.php
@@ -56,11 +56,6 @@ foreach($posts as $Post) {
#===============================================================================
# Build document
#===============================================================================
-$PaginationTemplate = Template\Factory::build('pagination');
-$PaginationTemplate->set('THIS', $currentSite);
-$PaginationTemplate->set('LAST', $lastSite);
-$PaginationTemplate->set('HREF', Application::getAdminURL('post/?site=%d'));
-
$ListTemplate = Template\Factory::build('post/index');
$ListTemplate->set('LIST', [
'POSTS' => $templates ?? []
@@ -69,7 +64,9 @@ $ListTemplate->set('LIST', [
$ListTemplate->set('PAGINATION', [
'THIS' => $currentSite,
'LAST' => $lastSite,
- 'HTML' => $PaginationTemplate
+ 'HTML' => createPaginationTemplate(
+ $currentSite, $lastSite, Application::getAdminURL('post/')
+ )
]);
$MainTemplate = Template\Factory::build('main');