mirror of
https://github.com/magicbug/Cloudlog
synced 2026-08-13 17:49:35 -04:00
Fixed using the wrong column in query to filter out SAT qsos.
This commit is contained in:
parent
37f9439089
commit
ebe58443b5
1 changed files with 1 additions and 1 deletions
|
|
@ -199,7 +199,7 @@ class Logbook_model extends CI_Model {
|
|||
$this->db->where('station_id', $station_id);
|
||||
$this->db->where('COL_IOTA', $iota);
|
||||
if($band != "SAT") {
|
||||
$this->db->where('COL_BAND !=', 'SAT');
|
||||
$this->db->where('COL_PROP_MODE !=', 'SAT');
|
||||
$this->db->where('COL_BAND', $band);
|
||||
} else {
|
||||
$this->db->where('COL_PROP_MODE', "SAT");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue