diff --git a/application/controllers/Auth.php b/application/controllers/Auth.php index 66cc23f9..9733059e 100644 --- a/application/controllers/Auth.php +++ b/application/controllers/Auth.php @@ -61,9 +61,9 @@ public function index() { $this->data['users'][$k]->groups = $this->ion_auth->get_users_groups($user->id)->result(); } - $this->_render_page('auth' . DIRECTORY_SEPARATOR . 'header', $this->data); - $this->_render_page('auth' . DIRECTORY_SEPARATOR . 'index', $this->data); - $this->_render_page('auth' . DIRECTORY_SEPARATOR . 'footer', $this->data); + $this->_render_page('auth/header', $this->data); + $this->_render_page('auth/index', $this->data); + $this->_render_page('auth/footer', $this->data); } }