From d3da7ca5c62fe303b3549654f53b7c6d974597aa Mon Sep 17 00:00:00 2001 From: Luke Tainton Date: Mon, 10 Aug 2020 16:49:56 +0100 Subject: [PATCH] :bug: Submit multiple delsubs as an array Signed-off-by: Luke Tainton --- app/public/editsub.php | 4 ++-- app/public/existing.php | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/app/public/editsub.php b/app/public/editsub.php index 293bc1b..8313de0 100644 --- a/app/public/editsub.php +++ b/app/public/editsub.php @@ -103,8 +103,8 @@
- - " . get_user_name($db, $usr) . ""); } ?> diff --git a/app/public/existing.php b/app/public/existing.php index b820868..d20f486 100644 --- a/app/public/existing.php +++ b/app/public/existing.php @@ -3,9 +3,10 @@ require_once __DIR__ . "/../includes/header.php"; if (is_signed_in()) { - $closed_requests = get_my_closed_requests($db); - $subscriptions = get_subscribed_requests($db); $open_requests = get_my_open_requests($db); + $closed_requests = get_my_closed_requests($db); + $subscriptions = get_subscribed_requests($db); + } ?>