From 758aa9cb8e2de5c05f5c9a5d7130be798fafc034 Mon Sep 17 00:00:00 2001 From: Michael Claesson Date: Thu, 7 Nov 2024 10:59:18 +0100 Subject: [PATCH] Fix bug where function didn't return post data Can we also add a version tag so that we're able to fetch the latest release via composer? --- source/php/Module/Noticeboard.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/php/Module/Noticeboard.php b/source/php/Module/Noticeboard.php index a5541a6..4194302 100644 --- a/source/php/Module/Noticeboard.php +++ b/source/php/Module/Noticeboard.php @@ -120,6 +120,8 @@ private function get_posts($tags = []) { 'meetingDate' => $meetingDate, 'link' => $link, ]; + + return $postItems; } } }