@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+1 -1
+1 -1
src/applications/audit/editor/PhabricatorAuditEditor.php
··· 275 275 276 276 if ($actor_is_author) { 277 277 $inlines[] = id(clone $query) 278 - ->withHasTransaciton(true) 278 + ->withHasTransaction(true) 279 279 ->execute(); 280 280 } 281 281