diff --git a/src/applications/audit/editor/PhabricatorAuditEditor.php b/src/applications/audit/editor/PhabricatorAuditEditor.php --- a/src/applications/audit/editor/PhabricatorAuditEditor.php +++ b/src/applications/audit/editor/PhabricatorAuditEditor.php @@ -105,6 +105,8 @@ switch ($xaction->getTransactionType()) { case PhabricatorAuditActionConstants::INLINE: + $xaction->getComment()->setAttribute('editing', false); + return; case PhabricatorAuditTransaction::TYPE_COMMIT: return; } diff --git a/src/applications/differential/editor/DifferentialTransactionEditor.php b/src/applications/differential/editor/DifferentialTransactionEditor.php --- a/src/applications/differential/editor/DifferentialTransactionEditor.php +++ b/src/applications/differential/editor/DifferentialTransactionEditor.php @@ -112,6 +112,7 @@ switch ($xaction->getTransactionType()) { case DifferentialTransaction::TYPE_INLINE: + $xaction->getComment()->setAttribute('editing', false); return; }