aboutsummaryrefslogtreecommitdiffstats
path: root/core/include/page/list.php
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2021-06-21 19:46:02 +0200
committerThomas Lange <code@nerdmind.de>2021-06-21 19:46:02 +0200
commit0b15a4d76b7b9934f70319fc2132b91865fe58d1 (patch)
tree2fa0f0137fe0ac4875ab816954fde5c54e2f631b /core/include/page/list.php
parent86926ff735cdb7e635a19b01cccd0a94eb2b6d30 (diff)
downloadblog-0b15a4d76b7b9934f70319fc2132b91865fe58d1.tar.gz
blog-0b15a4d76b7b9934f70319fc2132b91865fe58d1.tar.xz
blog-0b15a4d76b7b9934f70319fc2132b91865fe58d1.zip
Remove unnecessary $ItemTemplate variables
Diffstat (limited to 'core/include/page/list.php')
-rw-r--r--core/include/page/list.php5
1 files changed, 1 insertions, 4 deletions
diff --git a/core/include/page/list.php b/core/include/page/list.php
index 55f38cc..7618009 100644
--- a/core/include/page/list.php
+++ b/core/include/page/list.php
@@ -37,10 +37,7 @@ foreach($pageIDs as $pageID) {
try {
$Page = Page\Factory::build($pageID);
$User = User\Factory::build($Page->get('user'));
-
- $ItemTemplate = generatePageItemTemplate($Page, $User);
-
- $templates[] = $ItemTemplate;
+ $templates[] = generatePageItemTemplate($Page, $User);
}
catch(Page\Exception $Exception){}
catch(User\Exception $Exception){}