From bcdcde1b898797c6c3035ca9da49f04a0d7d412e Mon Sep 17 00:00:00 2001 From: pavlosb Date: Wed, 31 Jan 2024 16:26:51 +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 9733059e..66cc23f9 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/header', $this->data); - $this->_render_page('auth/index', $this->data); - $this->_render_page('auth/footer', $this->data); + $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); } }