From c9d0ef507619a06d06d68444592d6a3d84246234 Mon Sep 17 00:00:00 2001 From: LiaoYijun Date: Fri, 15 Apr 2022 16:46:16 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=20Why=20Us=20=E6=A8=A1?= =?UTF-8?q?=E6=9D=BF=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/controllers/information.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/application/controllers/information.php b/application/controllers/information.php index 38442bfa..71a7d87a 100644 --- a/application/controllers/information.php +++ b/application/controllers/information.php @@ -1225,13 +1225,13 @@ class Information extends CI_Controller } // why-us 相关的标签 $why_us_mobile = $this->load->view($template_path . '-why-us-mobile', false, true); - $information->ic_content = str_replace('', $why_us_mobile, $template); + $information->ic_content = str_replace('', $why_us_mobile, $information->ic_content); $why_us_tour_detail_pc = $this->load->view($template_path . '-why-us-tour-detail-pc', false, true); - $information->ic_content = str_replace('', $why_us_tour_detail_pc, $template); + $information->ic_content = str_replace('', $why_us_tour_detail_pc, $information->ic_content); $why_us_tour_list_pc = $this->load->view($template_path . '-why-us-tour-list-pc', false, true); - $information->ic_content = str_replace('', $why_us_tour_list_pc, $template); + $information->ic_content = str_replace('', $why_us_tour_list_pc, $information->ic_content); $breadcrumb_content = $this->load->view($template_path . '-breadcrumb', array('breadcrumb_data' => $breadcrumb_data), true); $information->ic_content = str_replace('', $breadcrumb_content, $information->ic_content);