Skip to content

Commit

Permalink
Revert "Merge pull request #1748 from florianprischl/patch-1"
Browse files Browse the repository at this point in the history
This reverts commit f81ff06, reversing
changes made to 19b6a7c.
  • Loading branch information
magicbug committed Nov 8, 2022
1 parent f81ff06 commit 5bf8975
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions application/views/csv/data/export.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@
"6cm" => "5.6GHz",
"3cm" => "10GHz",
"1.25cm" => "24GHz",
"6mm" => "MICROWAVE",
"4mm" => "MICROWAVE",
"2.5mm" => "MICROWAVE",
"2mm" => "MICROWAVE",
"1mm" => "MICROWAVE"
"6mm" => "MIcROWAVE",
"4mm" => "MIcROWAVE",
"2.5mm" => "MIcROWAVE",
"2mm" => "MIcROWAVE",
"1mm" => "MIcROWAVE"
);
foreach ($qsos as $qso) {
$timestamp = strtotime($qso['COL_TIME_ON']);
print "V2;".$qso['station_callsign'].",".$qso['COL_MY_SOTA_REF'].",".date('d/m/y', $timestamp).",".date('Hi', $timestamp).",".$bands[$qso['COL_BAND']].",".$qso['COL_MODE'].",".$qso['COL_CALL'].",".$qso['COL_SOTA_REF'].",".$qso['COL_COMMENT']."\n";
print "V2;".$qso['station_callsign'].";".$qso['COL_MY_SOTA_REF'].";".date('d/m/y', $timestamp).";".date('Hi', $timestamp).";".$bands[$qso['COL_BAND']].";".$qso['COL_MODE'].";".$qso['COL_CALL'].";".$qso['COL_SOTA_REF'].";".$qso['COL_COMMENT']."\n";
}
?>

0 comments on commit 5bf8975

Please sign in to comment.