Skip to content

Commit

Permalink
Advanced search - Fixes issue with some modes missing
Browse files Browse the repository at this point in the history
  • Loading branch information
magicbug committed Nov 27, 2024
1 parent 875155f commit d53a17f
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions application/models/Logbookadvanced_model.php
Original file line number Diff line number Diff line change
Expand Up @@ -442,10 +442,7 @@ function get_modes() {
if ($mode->col_submode == null || $mode->col_submode == "") {
array_push($modes, $mode->col_mode);
} else {
// Make sure we don't add LSB or USB as submodes in the array list
if ($mode->col_mode != "SSB") {
array_push($modes, $mode->col_submode);
}
array_push($modes, $mode->col_submode);
}
}

Expand Down

0 comments on commit d53a17f

Please sign in to comment.