From fd0200cbfc45bf83377aa08b9fc8c461ab0dd82f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E9=B9=8F?= Date: Thu, 9 Jul 2020 14:36:10 +0800 Subject: [PATCH] =?UTF-8?q?bokun=E6=8A=93=E5=8F=96=E7=A8=8B=E5=BA=8F?= =?UTF-8?q?=E7=A1=AE=E5=AE=9A=E7=89=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../third_party/tpmanage/controllers/webgetbokun.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/application/third_party/tpmanage/controllers/webgetbokun.php b/application/third_party/tpmanage/controllers/webgetbokun.php index abf65efa..3e061c63 100644 --- a/application/third_party/tpmanage/controllers/webgetbokun.php +++ b/application/third_party/tpmanage/controllers/webgetbokun.php @@ -127,7 +127,7 @@ class webgetbokun extends CI_Controller

Description

-

Trip Overview

'.$temp_summary.' +

Overview

'.$temp_summary.'
'; @@ -136,21 +136,22 @@ class webgetbokun extends CI_Controller

Itinerary

'.$strContent.'
'; //FAQ - $tempFaq = $strFaq = ''; + $tempFaq = $strFaq = $strIncluded = $strExcluded = ''; if (isset($activityDeatil->included)){ if ($activityDeatil->included!="" && $activityDeatil->included!=null){ $strFaq = '

What\'s included?

'.$activityDeatil->included.'
'; - $tempFaq.=$strFaq; + $strIncluded.=$strFaq; } } if (isset($activityDeatil->excluded)){ if ($activityDeatil->excluded!="" && $activityDeatil->excluded!=null){ $strFaq = '

What\'s excluded?

'.$activityDeatil->excluded.'
'; - $tempFaq.=$strFaq; + $strExcluded.=$strFaq; } } + $tempFaq = '
'.$strIncluded.'
'.$strExcluded.'
'; if (isset($activityDeatil->requirements)){ if ($activityDeatil->requirements!="" && $activityDeatil->requirements!=null){