mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
correct misunderstanding of format
This commit is contained in:
@@ -65,7 +65,7 @@ class Reg1testformat {
|
||||
return "\r\n";
|
||||
}
|
||||
|
||||
public function qso($qsodata, $qsonumber) {
|
||||
public function qso($qsodata) {
|
||||
|
||||
//Construct QSO detail
|
||||
$edi_detail = "";
|
||||
|
||||
@@ -13,10 +13,8 @@ echo $CI->reg1testformat->header($contest_id, $from, $to, $callsign, $gridlocato
|
||||
$soapbox, $qso_count, $sentexchange, $txequipment, $power, $rxequipment, $antenna, $antennaheight, $maxdistanceqso);
|
||||
|
||||
//write QSO details while keeping track of the QSO number
|
||||
$i = 1;
|
||||
foreach ($qsos->result() as $row) {
|
||||
echo $CI->reg1testformat->qso($row, $i);
|
||||
$i++;
|
||||
echo $CI->reg1testformat->qso($row);
|
||||
}
|
||||
|
||||
//get footer
|
||||
|
||||
Reference in New Issue
Block a user