Skip to content

Commit

Permalink
fix: export.php csv header typo (#499)
Browse files Browse the repository at this point in the history
line 24, csv header type "Categpry"
  • Loading branch information
cloning5480 authored Sep 1, 2024
1 parent e07514a commit 6e96c5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions endpoints/subscriptions/export.php
Original file line number Diff line number Diff line change
Expand Up @@ -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'],
Expand All @@ -41,4 +41,4 @@
]));


?>
?>

0 comments on commit 6e96c5d

Please sign in to comment.