internal forms
continuous-integration/drone/push Build is passing

This commit is contained in:
2026-02-17 10:30:11 +01:00
parent e03c341c08
commit 217b90bd48
2 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -154,7 +154,7 @@ if (isset($json_cd_res) && ($_POST['donate'] > 0)) {
$data = [
'name' => htmlspecialchars($_POST['firstname']).' '.htmlspecialchars($_POST['lastname']),
'donationID' => $_POST['donationID'],
'donationID' => isset($_POST['donationID']) ? $_POST['donationID'] : '',
'donate' => htmlspecialchars($_POST['donate']),
'lang' => $lang,
];
+8 -8
View File
@@ -19,14 +19,14 @@ $rc_month = isset($_POST['rc_month']) ? htmlspecialchars($_POST['rc_month']) : f
$rc_year = isset($_POST['rc_year']) ? htmlspecialchars($_POST['rc_year']) : false;
$cc_month = isset($_POST['cc_month']) ? htmlspecialchars($_POST['cc_month']) : false;
$cc_year = isset($_POST['cc_year']) ? htmlspecialchars($_POST['cc_year']) : false;
$entry = isset($_POST['entry']) ? htmlspecialchars($_POST['entry']) : false; // will become $date in loop
$amount = isset($_POST['amount']) ? htmlspecialchars($_POST['amount']) : false;
$recipient = isset($_POST['recipient']) ? htmlspecialchars($_POST['recipient']) : false;
$activity = isset($_POST['activity']) ? htmlspecialchars($_POST['activity']) : false;
$category = isset($_POST['category']) ? htmlspecialchars($_POST['category']) : false;
$receipt = isset($_POST['receipt']) ? htmlspecialchars($_POST['receipt']) : false;
$description = isset($_POST['description']) ? htmlspecialchars($_POST['description']) : false;
$event = isset($_POST['event']) ? htmlspecialchars($_POST['event']) : false;
$entry = isset($_POST['entry']) ? $_POST['entry'] : false; // will become $date in loop
$amount = isset($_POST['amount']) ? $_POST['amount'] : false;
$recipient = isset($_POST['recipient']) ? $_POST['recipient'] : false;
$activity = isset($_POST['activity']) ? $_POST['activity'] : false;
$category = isset($_POST['category']) ? $_POST['category'] : false;
$receipt = isset($_POST['receipt']) ? $_POST['receipt'] : false;
$description = isset($_POST['description']) ? $_POST['description'] : false;
$event = isset($_POST['event']) ? $_POST['event'] : false;
$extra = isset($_POST['extra']) ? htmlspecialchars($_POST['extra']) : false;
$mailopt = isset($_POST['mailopt']) ? $_POST['mailopt'] : false;