Displays Only Open Tickets

Index was displaying all requests instead of open requests
This commit is contained in:
2020-08-09 22:06:35 +01:00
parent 6f48c86265
commit f9e0fc00a3
2 changed files with 11 additions and 1 deletions

View File

@@ -3,7 +3,7 @@
require_once __DIR__ . "/../includes/header.php";
if (is_signed_in()) {
$requests = get_my_requests($db);
$requests = get_my_open_requests($db);
$subscriptions = get_subscribed_requests($db);
}