From 4070302a7e414e76f1c03da7847967bd373adfea Mon Sep 17 00:00:00 2001 From: ELF <360197197@qq.com> Date: Thu, 16 Apr 2020 15:24:50 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Application/Home/Controller/GameController.class.php | 1 + 1 file changed, 1 insertion(+) diff --git a/Application/Home/Controller/GameController.class.php b/Application/Home/Controller/GameController.class.php index 557d1a99c..61de417e1 100644 --- a/Application/Home/Controller/GameController.class.php +++ b/Application/Home/Controller/GameController.class.php @@ -83,6 +83,7 @@ class GameController extends BaseController $conditions['server_type'] = $serverType; $conditions['id'] = ['in', $gameIds]; + $conditions['game_status'] = 1; $query = M('game', 'tab_')->field($columns)->where($conditions)->order('relation_game_id desc'); list($games, $pagination, $count) = $this->paginate($query);