added missing join to station_profile to DOK award show qsos dialog

pull/1436/head
Thomas Werzmirzowsky 2022-03-18 20:59:18 +01:00
rodzic edf54b681f
commit 3def0a3180
2 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -64,6 +64,7 @@ class Awards extends CI_Controller {
$arguments["format"] = "json";
$arguments["limit"] = '';
$arguments["order"] = '';
$arguments["join_station_profile"] = true;
// print_r($arguments);
// return;

Wyświetl plik

@ -250,6 +250,9 @@ class API_Model extends CI_Model {
// Append the table we're pulling data from
$q .= "FROM ".$this->config->item('table_name');
if (isset($arguments["join_station_profile"]) && $arguments["join_station_profile"]) {
$q .= " INNER JOIN station_profile ON ".$this->config->item('table_name').".station_id = station_profile.station_id";
}
// Parse the 'query' string, which is converted into a standard MySQL 'WHERE'
// clause.