Removed all constructors in models, since this doesn't work in never CodeIgniter

This commit is contained in:
Andreas
2021-11-06 20:24:28 +01:00
parent 016cd7198c
commit 1b2a88b355
41 changed files with 1 additions and 238 deletions

View File

@@ -2,12 +2,6 @@
class Modes extends CI_Model {
function __construct()
{
// Call the Model constructor
parent::__construct();
}
function all() {
$this->db->order_by('mode', 'ASC');
$this->db->order_by('submode', 'ASC');