mirror of
https://github.com/magicbug/Cloudlog
synced 2026-08-13 17:49:35 -04:00
Show all unconfirmed if no QSL method is selected
This commit is contained in:
parent
2fdc86fe51
commit
088a4828ed
2 changed files with 10 additions and 1 deletions
|
|
@ -173,7 +173,7 @@ class Gridmap extends CI_Controller {
|
|||
}
|
||||
}
|
||||
|
||||
$data['grid_2char_confirmed'] = ($array_grid_2char_confirmed);
|
||||
$data['grid_2char_confirmed'] = ($array_grid_2char_confirmed);
|
||||
$data['grid_4char_confirmed'] = ($array_grid_4char_confirmed);
|
||||
$data['grid_6char_confirmed'] = ($array_grid_6char_confirmed);
|
||||
|
||||
|
|
|
|||
|
|
@ -13,6 +13,10 @@ class Gridmap_model extends CI_Model {
|
|||
return null;
|
||||
}
|
||||
|
||||
if ($lotw != "true" && $qsl != "true" && $eqsl != "true" && $qrz != "true") {
|
||||
return null;
|
||||
}
|
||||
|
||||
$location_list = "'".implode("','",$logbooks_locations_array)."'";
|
||||
|
||||
$sql = 'SELECT distinct substring(COL_GRIDSQUARE,1,6) as GRID_SQUARES, COL_BAND FROM '
|
||||
|
|
@ -129,6 +133,11 @@ class Gridmap_model extends CI_Model {
|
|||
return null;
|
||||
}
|
||||
|
||||
|
||||
if ($lotw != "true" && $qsl != "true" && $eqsl != "true" && $qrz != "true") {
|
||||
return null;
|
||||
}
|
||||
|
||||
$location_list = "'".implode("','",$logbooks_locations_array)."'";
|
||||
|
||||
$sql = 'SELECT distinct COL_VUCC_GRIDS, COL_BAND FROM '
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue