mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
[QRB Link] Removed id from link.
This commit is contained in:
@@ -31,9 +31,9 @@ function echo_table_col($row, $name) {
|
||||
|
||||
function echoQrbCalcLink($grid, $vucc) {
|
||||
if (strlen($grid) != 0) {
|
||||
echo $grid . ' <a id="edit_qso" href="javascript:spawnQrbCalculator(\'' . $grid . '\')"><i class="fas fa-globe"></i></a>';
|
||||
echo $grid . ' <a href="javascript:spawnQrbCalculator(\'' . $grid . '\')"><i class="fas fa-globe"></i></a>';
|
||||
} else if (strlen($vucc) != 0) {
|
||||
echo $vucc .' <a id="edit_qso" href="javascript:spawnQrbCalculator(\'' . $vucc . '\')"><i class="fas fa-globe"></i></a>';
|
||||
echo $vucc .' <a href="javascript:spawnQrbCalculator(\'' . $vucc . '\')"><i class="fas fa-globe"></i></a>';
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
@@ -32,9 +32,9 @@ function echo_table_col($row, $name) {
|
||||
|
||||
function echoQrbCalcLink($grid, $vucc) {
|
||||
if (strlen($grid) != 0) {
|
||||
echo $grid . ' <a id="edit_qso" href="javascript:spawnQrbCalculator(\'' . $grid . '\')"><i class="fas fa-globe"></i></a>';
|
||||
echo $grid . ' <a href="javascript:spawnQrbCalculator(\'' . $grid . '\')"><i class="fas fa-globe"></i></a>';
|
||||
} else if (strlen($vucc) != 0) {
|
||||
echo $vucc .' <a id="edit_qso" href="javascript:spawnQrbCalculator(\'' . $vucc . '\')"><i class="fas fa-globe"></i></a>';
|
||||
echo $vucc .' <a href="javascript:spawnQrbCalculator(\'' . $vucc . '\')"><i class="fas fa-globe"></i></a>';
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
@@ -97,7 +97,7 @@
|
||||
<?php if($row->COL_GRIDSQUARE != null) { ?>
|
||||
<tr>
|
||||
<td>Gridsquare:</td>
|
||||
<td><?php echo $row->COL_GRIDSQUARE; ?> <a id="edit_qso" href="javascript:spawnQrbCalculator('<?php echo $row->COL_GRIDSQUARE; ?>')"><i class="fas fa-globe"></i></a></td>
|
||||
<td><?php echo $row->COL_GRIDSQUARE; ?> <a href="javascript:spawnQrbCalculator('<?php echo $row->COL_GRIDSQUARE; ?>')"><i class="fas fa-globe"></i></a></td>
|
||||
</tr>
|
||||
<?php } ?>
|
||||
|
||||
@@ -133,7 +133,7 @@
|
||||
<?php if($row->COL_VUCC_GRIDS != null) { ?>
|
||||
<tr>
|
||||
<td>Gridsquare (Multi):</td>
|
||||
<td><?php echo $row->COL_VUCC_GRIDS; ?> <a id="edit_qso" href="javascript:spawnQrbCalculator('<?php echo $row->COL_VUCC_GRIDS; ?>')"><i class="fas fa-globe"></i></a></td>
|
||||
<td><?php echo $row->COL_VUCC_GRIDS; ?> <a href="javascript:spawnQrbCalculator('<?php echo $row->COL_VUCC_GRIDS; ?>')"><i class="fas fa-globe"></i></a></td>
|
||||
</tr>
|
||||
<?php } ?>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user