Merge branch 'zentaopms_239_bug#28747' into 'zentaopms_239'

* Fix bug #28747.

See merge request easycorp/zentaopms!5844
This commit is contained in:
王 于听
2022-10-21 01:04:15 +00:00
+1 -1
View File
@@ -931,7 +931,7 @@ class projectModel extends model
*/
public function getProjectExecutionPairs()
{
return $this->dao->select('project, id')->from(TABLE_PROJECT)->andWhere('multiple')->eq('0')->andWhere('deleted')->eq('0')->fetchPairs();
return $this->dao->select('project, id')->from(TABLE_PROJECT)->where('multiple')->eq('0')->andWhere('deleted')->eq('0')->fetchPairs();
}
/**