mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-22 21:40:55 +01:00
Bring back desciption to Maniphest attachment
This commit is contained in:
parent
ba9b4f5b66
commit
e9779b2db1
1 changed files with 6 additions and 2 deletions
|
@ -490,12 +490,16 @@ final class ManiphestTransactionDetailView extends ManiphestView {
|
|||
|
||||
if ($added && !$removed) {
|
||||
$verb = 'Attached';
|
||||
$desc = 'attached '.$this->getAttachName($attach_type, count($added));
|
||||
$desc =
|
||||
'attached '.
|
||||
$this->getAttachName($attach_type, count($added)).': '.
|
||||
$add_desc;
|
||||
} else if ($removed && !$added) {
|
||||
$verb = 'Detached';
|
||||
$desc =
|
||||
'detached '.
|
||||
$this->getAttachName($attach_type, count($removed));
|
||||
$this->getAttachName($attach_type, count($removed)).': '.
|
||||
$rem_desc;
|
||||
} else {
|
||||
$verb = 'Changed Attached';
|
||||
$desc =
|
||||
|
|
Loading…
Reference in a new issue