@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

Fix some copy/paste slop with BLOCK actions in Herald transcripts

Summary: Fixes T9060. These actions still work fine, but the transcripts got messed up a bit.

Test Plan: Viewed transcripts with blocking actions.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T9060

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

+2 -2
+1 -1
src/applications/differential/herald/DifferentialBlockHeraldAction.php
··· 49 49 50 50 protected function renderActionEffectDescription($type, $data) { 51 51 switch ($type) { 52 - case self::DO_ADD_AUDITORS: 52 + case self::DO_BLOCK: 53 53 return pht('Blocked diff.'); 54 54 } 55 55 }
+1 -1
src/applications/diffusion/herald/DiffusionBlockHeraldAction.php
··· 49 49 50 50 protected function renderActionEffectDescription($type, $data) { 51 51 switch ($type) { 52 - case self::DO_ADD_AUDITORS: 52 + case self::DO_BLOCK: 53 53 return pht('Blocked push.'); 54 54 } 55 55 }