* [task#125055,done,0.1h,0h] Adjust character alignment.

This commit is contained in:
zhaixiaojian
2024-08-13 19:15:05 +08:00
committed by 丁国栋
parent 9d71be9932
commit a67fbbfaff
2 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -2099,7 +2099,7 @@ class bugModel extends model
public function updateLinkedCommits(int $bugID, int $repoID, array $revisions): bool
{
if(!$bugID || !$repoID || empty($revisions)) return true;
$bug = $this->dao->select('product')->from(TABLE_BUG)->where('id')->eq($bugID)->fetch();
$bug = $this->dao->select('product, project')->from(TABLE_BUG)->where('id')->eq($bugID)->fetch();
if(!$bug) return true;
foreach($revisions as $revision)
{