From c84091397880aedbeb82a1fb7d278f867d496a01 Mon Sep 17 00:00:00 2001 From: pavlosb Date: Wed, 31 Jan 2024 15:28:44 +0200 Subject: [PATCH] Update Auth.php --- application/controllers/Auth.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); } }