Add link to general GMA page

This commit is contained in:
phl0
2024-09-09 08:26:41 +02:00
parent 23fee13b99
commit ffcea4af76

View File

@@ -326,7 +326,16 @@
<?php if($row->COL_SIG != null) { ?>
<tr>
<td><?= __("Sig"); ?></td>
<td><?php echo $row->COL_SIG; ?></td>
<?php
switch ($row->COL_SIG) {
case "GMA":
echo "<td><a href=\"https://cqgma.org/\" target=\"_blank\">".$row->COL_SIG."</a></td>";
break;
default:
echo "<td>".$row->COL_SIG."</td>";
break;
}
?>
</tr>
<?php } ?>