diff options
Diffstat (limited to 'core/include/post')
-rw-r--r-- | core/include/post/list.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/core/include/post/list.php b/core/include/post/list.php index b542a2f..84de108 100644 --- a/core/include/post/list.php +++ b/core/include/post/list.php @@ -37,10 +37,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){} |