Bring Clublog-"QSL" to Frontend

This commit is contained in:
int2001
2024-05-13 08:02:10 +00:00
parent 54119d7d8d
commit cba28293c9
7 changed files with 75 additions and 22 deletions

View File

@@ -22,6 +22,9 @@ class Genfunctions
if ($postdata['qrz'] != NULL) {
array_push($qsl, "COL_QRZCOM_QSO_DOWNLOAD_STATUS = 'Y'");
}
if ($postdata['clublog'] != NULL) {
array_push($qsl, "COL_CLUBLOG_QSO_DOWNLOAD_STATUS = 'Y'");
}
if (count($qsl) > 0) {
$sql .= implode(' or ', $qsl);
} else {
@@ -59,6 +62,9 @@ class Genfunctions
if ($postdata['eqsl'] != NULL ) {
$qsl .= "E";
}
if ($postdata['clublog'] != NULL ) {
$qsl .= "C";
}
if ($postdata['qrz'] != NULL ) {
$qsl .= "Z";
}