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

Don't show "View Raw" for removed comments

Summary: Fixes T7232.

Test Plan: Saw "View Raw" gone for removed comment, still present and functional for non-removed comment.

Reviewers: btrahan, chad

Reviewed By: chad

Subscribers: epriestley

Maniphest Tasks: T7232

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

+3 -1
+3 -1
src/applications/transactions/view/PhabricatorApplicationTransactionView.php
··· 462 462 $event->setIsEdited(true); 463 463 } 464 464 465 - $event->setIsNormalComment(true); 465 + if (!$has_removed_comment) { 466 + $event->setIsNormalComment(true); 467 + } 466 468 467 469 // If we have a place for quoted text to go and this is a quotable 468 470 // comment, pass the quote target ID to the event view.