mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
Added missing model. DXAtlas v2 user_id fix
This commit is contained in:
@@ -98,17 +98,19 @@ class Dxatlas_model extends CI_Model
|
||||
|
||||
if ($column == 'single') {
|
||||
$sql .= "select distinct upper(substring(col_gridsquare, 1, 4)) gridsquare
|
||||
from " . $this->config->item('table_name') .
|
||||
from " . $this->config->item('table_name') .
|
||||
' join station_profile on station_profile.station_id = ' . $this->config->item('table_name').'.station_id' .
|
||||
" where col_gridsquare <> ''";
|
||||
}
|
||||
else if ($column == 'multi') {
|
||||
$sql .= "select col_vucc_grids
|
||||
from " . $this->config->item('table_name') .
|
||||
' join station_profile on station_profile.station_id = ' . $this->config->item('table_name').'.station_id' .
|
||||
" where col_vucc_grids <> '' ";
|
||||
}
|
||||
|
||||
if ($station_id != "All") {
|
||||
$sql .= ' and station_id = ' . $station_id;
|
||||
$sql .= ' and ' . $this->config->item('table_name'). '.station_id = ' . $station_id;
|
||||
}
|
||||
|
||||
if ($confirmationMethod == 'both') {
|
||||
@@ -158,6 +160,8 @@ class Dxatlas_model extends CI_Model
|
||||
$sql .= " and date(COL_TIME_ON) <='" . $to . "'";
|
||||
}
|
||||
|
||||
$sql .= ' and station_profile.user_id = ' . $this->session->userdata('user_id');
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->result_array();
|
||||
|
||||
Reference in New Issue
Block a user