mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-18 21:02:41 +01:00
Display changed attachments as other changes in Maniphest
Summary: When changing attachments, the removed part is squished together with the added parts, making it hard to read. This changes the output so it looks like other changes, seperating each action by a semicolon. Test Plan: Viewed a task where i had attached and deleted revisions, and saw the output look as other changes of same type. Reviewers: epriestley, btrahan Reviewed By: epriestley CC: aran, epriestley Differential Revision: 1238
This commit is contained in:
parent
afc2f8526b
commit
673f0d6c81
1 changed files with 1 additions and 1 deletions
|
@ -525,7 +525,7 @@ class ManiphestTransactionDetailView extends ManiphestView {
|
|||
}
|
||||
} else {
|
||||
$verb = 'Changed Attached';
|
||||
$desc = 'changed attached '.$plural.', added: '.$add_desc.
|
||||
$desc = 'changed attached '.$plural.', added: '.$add_desc.'; '.
|
||||
'removed: '.$rem_desc;
|
||||
}
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue