Don't require both father and mother name

This commit is contained in:
Skylar Ittner 2023-03-13 20:15:47 -06:00
parent 0643f25dde
commit 3496ddb6ad

View File

@ -59,7 +59,13 @@ if (!empty($_GET['id']) && $database->has('payments', ['paymentid' => $_GET['id'
"" => $Strings->get("Choose...", false) "" => $Strings->get("Choose...", false)
]; ];
foreach ($families as $f) { foreach ($families as $f) {
$familylist[$f['id']] = "$f[name], $f[father_name] and $f[mother_name]"; if (!empty($f["father_name"]) && !empty($f["mother_name"])) {
$familylist[$f['id']] = "$f[name], $f[father_name] and $f[mother_name]";
} else if (!empty($f["father_name"])) {
$familylist[$f['id']] = "$f[name], $f[father_name]";
} else if (!empty($f["mother_name"])) {
$familylist[$f['id']] = "$f[name], $f[mother_name]";
}
} }
$textboxes = [ $textboxes = [
[ [