mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
bug due to using $fields instead of $this->fields
Summary: see title Test Plan: ran "arc amend" to ensure that task ids where being included in the commit message Reviewers: epriestley CC: dpepper Differential Revision: 637
This commit is contained in:
parent
f55c082e65
commit
36e00db564
1 changed files with 1 additions and 1 deletions
|
@ -147,7 +147,7 @@ class DifferentialCommitMessageData {
|
||||||
|
|
||||||
if ($modify_class) {
|
if ($modify_class) {
|
||||||
$modifier = newv($modify_class, array($revision));
|
$modifier = newv($modify_class, array($revision));
|
||||||
$fields = $modifier->modifyFields($fields);
|
$this->fields = $modifier->modifyFields($this->fields);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue