mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
fix search_incorrect_cq_zones
forgot to add the `All` case
This commit is contained in:
@@ -1049,7 +1049,7 @@ class Logbook extends CI_Controller {
|
||||
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();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user