mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-09 06:11:01 +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) {
|
if ($added && !$removed) {
|
||||||
$verb = 'Attached';
|
$verb = 'Attached';
|
||||||
$desc = 'attached '.$this->getAttachName($attach_type, count($added));
|
$desc =
|
||||||
|
'attached '.
|
||||||
|
$this->getAttachName($attach_type, count($added)).': '.
|
||||||
|
$add_desc;
|
||||||
} else if ($removed && !$added) {
|
} else if ($removed && !$added) {
|
||||||
$verb = 'Detached';
|
$verb = 'Detached';
|
||||||
$desc =
|
$desc =
|
||||||
'detached '.
|
'detached '.
|
||||||
$this->getAttachName($attach_type, count($removed));
|
$this->getAttachName($attach_type, count($removed)).': '.
|
||||||
|
$rem_desc;
|
||||||
} else {
|
} else {
|
||||||
$verb = 'Changed Attached';
|
$verb = 'Changed Attached';
|
||||||
$desc =
|
$desc =
|
||||||
|
|
Loading…
Reference in a new issue