diff --git a/source/application/common/logic/PassFlow.php b/source/application/common/logic/PassFlow.php index aeb5bf3..b0073d1 100644 --- a/source/application/common/logic/PassFlow.php +++ b/source/application/common/logic/PassFlow.php @@ -193,7 +193,7 @@ class PassFlow if (!empty($param)) { if (!empty($param['groupsId'])) { $groupsId = explode("|",$param['groupsId']); - $paramWhere .= ' and "groupId" in (' . "'" . implode("','",$groupsId) . "'"; + $paramWhere .= ' and "groupId" in (' . "'" . implode("','",$groupsId) . "')"; } } $dateData = self::getDateData(); @@ -309,7 +309,7 @@ class PassFlow if (!empty($param)) { if (!empty($param['groupsId'])) { $groupsId = explode("|",$param['groupsId']); - $where .= ' and "groupId" in (' . "'" . implode("','",$groupsId) . "'"; + $where .= ' and "groupId" in (' . "'" . implode("','",$groupsId) . "')"; } } $date = self::getDateData('day');