diff --git a/application/models/Logbooks_model.php b/application/models/Logbooks_model.php index 1357b704..2351ca14 100644 --- a/application/models/Logbooks_model.php +++ b/application/models/Logbooks_model.php @@ -4,7 +4,6 @@ class Logbooks_model extends CI_Model { function show_all() { $this->db->where('user_id', $this->session->userdata('user_id')); - $this->db->order_by('logbook_name'); return $this->db->get('station_logbooks'); } diff --git a/application/models/Stations.php b/application/models/Stations.php index e7db2844..1a1e1b85 100644 --- a/application/models/Stations.php +++ b/application/models/Stations.php @@ -10,7 +10,6 @@ class Stations extends CI_Model { $this->db->group_by('station_profile.station_id'); $this->db->where('station_profile.user_id', $this->session->userdata('user_id')); $this->db->or_where('station_profile.user_id =', NULL); - $this->db->order_by('station_profile.station_profile_name'); return $this->db->get(); } diff --git a/application/views/station_profile/index.php b/application/views/station_profile/index.php index 970db8ec..b6401e8c 100644 --- a/application/views/station_profile/index.php +++ b/application/views/station_profile/index.php @@ -60,7 +60,7 @@