From 69902fbc21bbd671b07e48a8a87a238b635e367c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9E=A5=EC=84=A0=EA=B7=BC?= Date: Wed, 17 Jul 2019 17:23:05 +0900 Subject: [PATCH] =?UTF-8?q?=EC=98=A4=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- wheeparam/application/controllers/customer/Faq.php | 4 ++-- wheeparam/application/controllers/customer/Qna.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wheeparam/application/controllers/customer/Faq.php b/wheeparam/application/controllers/customer/Faq.php index 88c2ec5..cba1979 100644 --- a/wheeparam/application/controllers/customer/Faq.php +++ b/wheeparam/application/controllers/customer/Faq.php @@ -22,7 +22,7 @@ class Faq extends WB_Controller { // 레이아웃 & 뷰파일 설정 $this->theme = $this->site->get_layout(); $this->view = "customer/faq/lists"; - $this->active = "/customer/faq"; + $this->active = "customer/faq"; } /********************************************************************************************** @@ -47,7 +47,7 @@ class Faq extends WB_Controller { // 레이아웃 & 뷰파일 설정 $this->theme = $this->site->get_layout(); $this->view = "customer/faq/view"; - $this->active = "/customer/faq"; + $this->active = "customer/faq"; } /********************************************************************************************** diff --git a/wheeparam/application/controllers/customer/Qna.php b/wheeparam/application/controllers/customer/Qna.php index 56f1dfc..63f236c 100644 --- a/wheeparam/application/controllers/customer/Qna.php +++ b/wheeparam/application/controllers/customer/Qna.php @@ -50,7 +50,7 @@ class Qna extends WB_Controller $this->data['pagination'] = $this->paging->create(); $this->theme = $this->site->get_layout(); - $this->view = "customer/qna/lists"; + $this->view = "customer/qna"; } function write() @@ -157,7 +157,7 @@ class Qna extends WB_Controller $this->data['qna_category'] = $this->db->where('qnc_status','Y')->order_by('sort')->get('qna_category')->result_array(); $this->theme = $this->site->get_layout(); - $this->view = "customer/qna/write"; + $this->view = "customer/qna"; } }