From 625de43239c397b20bcd3c7ed05eb3c42dbf6fe8 Mon Sep 17 00:00:00 2001 From: Marcel Date: Wed, 17 Oct 2018 16:28:25 +0200 Subject: [PATCH] Show complete post in detail view --- application/models/PostsModel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/models/PostsModel.php b/application/models/PostsModel.php index c9921a4..c614d04 100644 --- a/application/models/PostsModel.php +++ b/application/models/PostsModel.php @@ -276,7 +276,7 @@ $data = $this->db->query('SELECT * FROM user_posts WHERE user_id = ? AND uuid = ?', [$userID, $uuid])->result_array(); $this->db->cache_on(); - $data = $this->preparePostList($data); + $data = $this->preparePostList($data, -1); return $data; }