1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-23 05:50:55 +01:00

Bring back desciption to Maniphest attachment

This commit is contained in:
vrana 2012-06-15 15:25:12 -07:00
parent ba9b4f5b66
commit e9779b2db1

View file

@ -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 =