Skip to content

Commit

Permalink
fix search_incorrect_cq_zones
Browse files Browse the repository at this point in the history
forgot to add the `All` case
HB9HIL authored Aug 14, 2024
1 parent 5ed5b99 commit addafc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/controllers/Logbook.php
Original file line number Diff line number Diff line change
@@ -1049,7 +1049,7 @@ function search_lotw_unconfirmed($station_id) {
function search_incorrect_cq_zones($station_id) {
$clean_station_id = $this->security->xss_clean($station_id);

if (!is_numeric($clean_station_id)) {
if (!is_numeric($clean_station_id) && $clean_station_id !== 'All') {
show_404();
}

0 comments on commit addafc9

Please sign in to comment.