diff --git a/application/libraries/Reg1testformat.php b/application/libraries/Reg1testformat.php index 7bb696eae..a4c8fb8fa 100644 --- a/application/libraries/Reg1testformat.php +++ b/application/libraries/Reg1testformat.php @@ -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; } diff --git a/application/views/reg1test/export.php b/application/views/reg1test/export.php index 26fb5215b..740204001 100644 --- a/application/views/reg1test/export.php +++ b/application/views/reg1test/export.php @@ -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() : '';