aboutsummaryrefslogtreecommitdiffstats
path: root/admin/post
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 /admin/post
parent86926ff735cdb7e635a19b01cccd0a94eb2b6d30 (diff)
downloadblog-0b15a4d76b7b9934f70319fc2132b91865fe58d1.tar.gz
blog-0b15a4d76b7b9934f70319fc2132b91865fe58d1.tar.xz
blog-0b15a4d76b7b9934f70319fc2132b91865fe58d1.zip
Remove unnecessary $ItemTemplate variables
Diffstat (limited to 'admin/post')
-rw-r--r--admin/post/index.php5
1 files changed, 1 insertions, 4 deletions
diff --git a/admin/post/index.php b/admin/post/index.php
index 79fbf92..8eedfbd 100644
--- a/admin/post/index.php
+++ b/admin/post/index.php
@@ -35,10 +35,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){}