From 11ce459f67a4beb150d442c65f487c744be43fdd Mon Sep 17 00:00:00 2001 From: epriestley Date: Wed, 12 Sep 2018 12:05:21 -0700 Subject: [PATCH] (stable) Fix a "withHasTransactions()" typo in AuditEditor Summary: See . 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 --- src/applications/audit/editor/PhabricatorAuditEditor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/audit/editor/PhabricatorAuditEditor.php b/src/applications/audit/editor/PhabricatorAuditEditor.php index c04bb8185b..673abeb85f 100644 --- a/src/applications/audit/editor/PhabricatorAuditEditor.php +++ b/src/applications/audit/editor/PhabricatorAuditEditor.php @@ -277,7 +277,7 @@ final class PhabricatorAuditEditor if ($actor_is_author) { $inlines[] = id(clone $query) - ->withHasTransaciton(true) + ->withHasTransaction(true) ->execute(); }