1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-19 03:50:54 +01:00

Fix bug where CC value is ignored on intial parse from commit message

Summary: While I thought this was complicated, there was nothing subtle or
tricky here -- I just misnamed a variable.

Test Plan: Created a revision with default CCs, got CCs instead of nothing.

Reviewers: aran, jungejason, tuomaspelkonen

Reviewed By: aran

CC: aran

Differential Revision: 834
This commit is contained in:
epriestley 2011-08-18 12:58:52 -07:00
parent 4693ffa82b
commit 735120b842

View file

@ -98,7 +98,7 @@ final class DifferentialCCsFieldSpecification
}
public function setValueFromParsedCommitMessage($value) {
$this->value = nonempty($value, array());
$this->ccs = nonempty($value, array());
return $this;
}