diff options
author | Thomas Lange <code@nerdmind.de> | 2021-06-21 19:36:22 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2021-06-21 19:36:22 +0200 |
commit | 86926ff735cdb7e635a19b01cccd0a94eb2b6d30 (patch) | |
tree | c78610e80d2e3954ce504a8d872c08de1f3abe91 /core/include/page/list.php | |
parent | 3eaf909b1fa8b07c6d8b23aa2c2ed3ec4e1932b7 (diff) | |
download | blog-86926ff735cdb7e635a19b01cccd0a94eb2b6d30.tar.gz blog-86926ff735cdb7e635a19b01cccd0a94eb2b6d30.tar.xz blog-86926ff735cdb7e635a19b01cccd0a94eb2b6d30.zip |
Rename some template variables
Diffstat (limited to 'core/include/page/list.php')
-rw-r--r-- | core/include/page/list.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/include/page/list.php b/core/include/page/list.php index ec2cd00..55f38cc 100644 --- a/core/include/page/list.php +++ b/core/include/page/list.php @@ -40,7 +40,7 @@ foreach($pageIDs as $pageID) { $ItemTemplate = generatePageItemTemplate($Page, $User); - $pages[] = $ItemTemplate; + $templates[] = $ItemTemplate; } catch(Page\Exception $Exception){} catch(User\Exception $Exception){} @@ -56,7 +56,7 @@ $ListTemplate->set('PAGINATION', [ 'HTML' => generatePageNaviTemplate($currentSite) ]); $ListTemplate->set('LIST', [ - 'PAGES' => $pages ?? [] + 'PAGES' => $templates ?? [] ]); $MainTemplate = Template\Factory::build('main'); |