change naming of variables

This commit is contained in:
DB4SCW
2024-09-03 12:02:55 +00:00
parent eaf2bf815d
commit 3c1295faf2
2 changed files with 3 additions and 3 deletions

View File

@@ -82,7 +82,7 @@ class Reg1testformat {
//define result
$result = [];
$result['formatted_result'] = "";
$result['formatted_qso'] = "";
$result['totalpoints'] = 0;
//iterate through every QSO and construct detail format
@@ -142,7 +142,7 @@ class Reg1testformat {
$qsorow .= ";\r\n"; //flag for duplicate QSO. Leave empty as Wavelog does not have this.
//add row to overall result
$result['formatted_result'] .= $qsorow;
$result['formatted_qso'] .= $qsorow;
}

View File

@@ -45,7 +45,7 @@ echo $CI->reg1testformat->header(
);
//write QSO details
echo $qsodetails['formatted_result'];
echo $qsodetails['formatted_qso'];
//get seperate footer if QSO details won't provide one
echo $qso_count < 1 ? $CI->reg1testformat->footer() : '';