aboutsummaryrefslogtreecommitdiffstats
path: root/core/include/home.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/home.php
parent86926ff735cdb7e635a19b01cccd0a94eb2b6d30 (diff)
downloadblog-0b15a4d76b7b9934f70319fc2132b91865fe58d1.tar.gz
blog-0b15a4d76b7b9934f70319fc2132b91865fe58d1.tar.xz
blog-0b15a4d76b7b9934f70319fc2132b91865fe58d1.zip
Remove unnecessary $ItemTemplate variables
Diffstat (limited to 'core/include/home.php')
-rw-r--r--core/include/home.php5
1 files changed, 1 insertions, 4 deletions
diff --git a/core/include/home.php b/core/include/home.php
index 0edd1f1..76c9287 100644
--- a/core/include/home.php
+++ b/core/include/home.php
@@ -14,10 +14,7 @@ foreach($postIDs as $postID) {
try {
$Post = Post\Factory::build($postID);
$User = User\Factory::build($Post->get('user'));
-
- $ItemTemplate = generatePostItemTemplate($Post, $User);
-
- $templates[] = $ItemTemplate;
+ $templates[] = generatePostItemTemplate($Post, $User);
}
catch(Post\Exception $Exception){}
catch(User\Exception $Exception){}