* Format codes.

This commit is contained in:
daitingting
2023-05-09 05:11:37 +00:00
parent 062bb522f0
commit 0f508687af
+4 -1
View File
@@ -2156,7 +2156,10 @@ class bugTest
$allRelatedLinkBugs = array_merge($addedLinkBugs, $removedLinkBugs, array($bugID));
global $tester;
$linkBugPairs = $tester->dao->select('id, linkBug')->from(TABLE_BUG)->where('id')->in(array_filter($allRelatedLinkBugs))->andWhere('deleted')->eq('0')->fetchPairs();
$linkBugPairs = $tester->dao->select('id, linkBug')->from(TABLE_BUG)
->where('id')->in(array_filter($allRelatedLinkBugs))
->andWhere('deleted')->eq('0')
->fetchPairs();
if(dao::isError()) return dao::getError();
return $linkBugPairs;