diff options
Diffstat (limited to 'application/models/muser.php')
-rw-r--r-- | application/models/muser.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/application/models/muser.php b/application/models/muser.php index 0fc99ab85..f3176d06d 100644 --- a/application/models/muser.php +++ b/application/models/muser.php @@ -5,6 +5,7 @@ class Muser extends CI_Model { { parent::__construct(); $this->load->library("session"); + $this->load->helper("filebin"); } function logged_in() @@ -56,7 +57,7 @@ class Muser extends CI_Model { if ($this->logged_in()) { return true; } else { - if ($this->file_mod->is_cli_client()) { + if (is_cli_client()) { echo "FileBin requires you to have an account, please go to the homepage for more information.\n"; exit(); } else { |