@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.

Make "Quote" work properly in Pholio

Summary:
See <https://discourse.phabricator-community.org/t/quote-comment-missing-on-mock-pages/4155>. Pholio is currently missing a couple of configuration calls to make the "Quote" action work.

Moving to EditEngine is the "real" fix, but this fix is trivial and should make "Quote" work properly with no negative effects.

Test Plan: Viewed a mock, used "quote" to quote a comment.

Differential Revision: https://secure.phabricator.com/D21437

+3
+3
src/applications/pholio/controller/PholioMockViewController.php
··· 61 61 new PholioTransactionQuery()); 62 62 $timeline->setMock($mock); 63 63 64 + $timeline->setQuoteRef($mock->getMonogram()); 65 + 64 66 $curtain = $this->buildCurtainView($mock); 65 67 $details = $this->buildDescriptionView($mock); 66 68 ··· 80 82 ->appendChild($mock_view); 81 83 82 84 $add_comment = $this->buildAddCommentView($mock, $comment_form_id); 85 + $add_comment->setTransactionTimeline($timeline); 83 86 84 87 $crumbs = $this->buildApplicationCrumbs(); 85 88 $crumbs->addTextCrumb($mock->getMonogram(), $mock->getURI());