aboutsummaryrefslogtreecommitdiffstats
path: root/core/include/search/main.php
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2021-06-21 19:36:22 +0200
committerThomas Lange <code@nerdmind.de>2021-06-21 19:36:22 +0200
commit86926ff735cdb7e635a19b01cccd0a94eb2b6d30 (patch)
treec78610e80d2e3954ce504a8d872c08de1f3abe91 /core/include/search/main.php
parent3eaf909b1fa8b07c6d8b23aa2c2ed3ec4e1932b7 (diff)
downloadblog-86926ff735cdb7e635a19b01cccd0a94eb2b6d30.tar.gz
blog-86926ff735cdb7e635a19b01cccd0a94eb2b6d30.tar.xz
blog-86926ff735cdb7e635a19b01cccd0a94eb2b6d30.zip
Rename some template variables
Diffstat (limited to 'core/include/search/main.php')
-rw-r--r--core/include/search/main.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/include/search/main.php b/core/include/search/main.php
index 8a02790..c15be17 100644
--- a/core/include/search/main.php
+++ b/core/include/search/main.php
@@ -42,7 +42,7 @@ if(isset($postIDs) AND !empty($postIDs)) {
$Post = Post\Factory::build($postID);
$User = User\Factory::build($Post->get('user'));
- $posts[] = generatePostItemTemplate($Post, $User);
+ $templates[] = generatePostItemTemplate($Post, $User);
}
catch(Post\Exception $Exception){}
catch(User\Exception $Exception){}
@@ -52,7 +52,7 @@ if(isset($postIDs) AND !empty($postIDs)) {
$ResultTemplate->set('FORM', $form_data);
$ResultTemplate->set('SEARCH', $search_data);
$ResultTemplate->set('RESULT', [
- 'LIST' => $posts ?? []
+ 'LIST' => $templates ?? []
]);
$MainTemplate = Template\Factory::build('main');