mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
fix css class
This commit is contained in:
@@ -378,7 +378,7 @@ class Stationsetup extends CI_Controller {
|
||||
private function stationcountry2html($station_country, $dxcc_end) {
|
||||
$returntext = $station_country == '' ? '- ' . __("NONE") . ' -' : $station_country;
|
||||
if ($dxcc_end != NULL) {
|
||||
$returntext .= ' <span class="badge badge-danger">'.__("Deleted DXCC").'</span>';
|
||||
$returntext .= ' <span class="badge bg-danger">'.__("Deleted DXCC").'</span>';
|
||||
}
|
||||
|
||||
return $returntext;
|
||||
|
||||
@@ -147,7 +147,7 @@
|
||||
<?php echo $row->station_profile_name;?><br>
|
||||
</td>
|
||||
<td><?php echo $row->station_callsign;?></td>
|
||||
<td><?php echo $row->station_country == '' ? '- NONE -' : $row->station_country; if ($row->dxcc_end != NULL) { echo ' <span class="badge badge-danger">'.__("Deleted DXCC").'</span>'; } ?></td>
|
||||
<td><?php echo $row->station_country == '' ? '- NONE -' : $row->station_country; if ($row->dxcc_end != NULL) { echo ' <span class="badge bg-danger">'.__("Deleted DXCC").'</span>'; } ?></td>
|
||||
<td><?php echo $row->station_gridsquare;?></td>
|
||||
<td>
|
||||
<?php if($row->station_active != 1) { ?>
|
||||
|
||||
Reference in New Issue
Block a user