From 6e96c5d4b0c7264ab37a85e9a8b8062f96f69c5c Mon Sep 17 00:00:00 2001 From: cloning5480 Date: Sun, 1 Sep 2024 13:17:45 +0000 Subject: [PATCH] fix: export.php csv header typo (#499) line 24, csv header type "Categpry" --- endpoints/subscriptions/export.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/endpoints/subscriptions/export.php b/endpoints/subscriptions/export.php index c72f87a27..db76d8249 100644 --- a/endpoints/subscriptions/export.php +++ b/endpoints/subscriptions/export.php @@ -21,7 +21,7 @@ $subscriptionDetails = array( 'Name' => str_replace(',', ' ', $row['name']), 'Next Payment' => $row['next_payment'], - 'Categpry' => str_replace(',', ' ', $categories[$row['category_id']]['name']), + 'Category' => str_replace(',', ' ', $categories[$row['category_id']]['name']), 'Payment Method' => str_replace(',', ' ', $payment_methods[$row['payment_method_id']]['name']), 'Paid By' => str_replace(',', ' ', $members[$row['payer_user_id']]['name']), 'Price' => $currencies[$row['currency_id']]['symbol'] . $row['price'], @@ -41,4 +41,4 @@ ])); -?> \ No newline at end of file +?>