1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02:00

Fix a "withHasTransactions()" typo in AuditEditor

Summary: See <https://discourse.phabricator-community.org/t/typo-in-phabricatorauditeditor-php/1910>. This is trivial and reproduces easily, I just missed it in testing.

Test Plan:
  - Left a comment on a commit which I was the author of.
  - Before change: fatal with obvious typo.
  - After change: smooth sailing.

Reviewers: amckinley

Reviewed By: amckinley

Differential Revision: https://secure.phabricator.com/D19667
This commit is contained in:
epriestley 2018-09-12 12:05:21 -07:00
parent 2379c21fbb
commit cc3b6d5790

View file

@ -275,7 +275,7 @@ final class PhabricatorAuditEditor
if ($actor_is_author) {
$inlines[] = id(clone $query)
->withHasTransaciton(true)
->withHasTransaction(true)
->execute();
}