From 9bdf3337e21c685b3365acc14f76b71d43ce2df2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E9=B9=8F?= Date: Mon, 5 Jul 2021 10:35:37 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=A2=84=E5=94=AE=E6=9C=9F?= =?UTF-8?q?=E4=B8=BA15=E5=A4=A9=EF=BC=8C=E4=B8=8D=E5=86=8D=E6=98=AF30?= =?UTF-8?q?=E5=A4=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../third_party/trainsystem/controllers/innerTrainSearch.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/third_party/trainsystem/controllers/innerTrainSearch.php b/application/third_party/trainsystem/controllers/innerTrainSearch.php index 66ac894e..99302869 100644 --- a/application/third_party/trainsystem/controllers/innerTrainSearch.php +++ b/application/third_party/trainsystem/controllers/innerTrainSearch.php @@ -99,8 +99,8 @@ class innerTrainSearch extends CI_Controller{ $now_time = time(); $this->differ_time = (strtotime($train_date) - $now_time) / 86400; $this->seveth = false; - //屏蔽掉超过预售期的搜索,提高速度 - if($this->differ_time > 29){ + //屏蔽掉超过预售期的搜索,提高速度,2021-7-5 zp修改预售期为15天,不再是30天 + if($this->differ_time > 14){ $train_date = date('Y-m-d',strtotime('+7day')); $this->seveth = true; }