mirror of
https://github.com/pierre42100/ComunicAPI
synced 2025-06-19 16:45:17 +00:00
Fix online issue
This commit is contained in:
@ -529,7 +529,7 @@ class PostsController {
|
||||
$data["userID"] = $post->get_userID();
|
||||
$data["user_page_id"] = $post->get_user_page_id();
|
||||
$data["post_time"] = $post->get_time_sent();
|
||||
$data["content"] = $post->has_content() ? utf8_encode($post->get_content()) : null;
|
||||
$data["content"] = $post->has_content() ? $post->get_content() : null;
|
||||
$data["visibility_level"] = self::VISIBILITY_LEVELS_API[$post->get_visibility_level()];
|
||||
$data["kind"] = $post->get_kind();
|
||||
|
||||
|
Reference in New Issue
Block a user