Merge pull request #1436 from Werzi2001/fix_award_dok_show_qsos

added missing join to station_profile to DOK award show qsos dialog
这个提交包含在:
Peter Goodhall 2022-03-21 11:54:18 +00:00 提交者 GitHub
当前提交 31ed071839
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23
共有 2 个文件被更改,包括 4 次插入0 次删除

查看文件

@ -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;

查看文件

@ -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.