1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 09:18:48 +02:00

Have modular transactions fall back correctly when selecting feed titles

Summary: Ref T9789. Falling back to `parent::` is better, and fixes older-style feed stories for Pastes, like "added a comment".

Test Plan: Viewed a comment feed story about a paste.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T9789

Differential Revision: https://secure.phabricator.com/D16114
This commit is contained in:
epriestley 2016-06-14 10:56:53 -07:00
parent fc1c633bae
commit e44d92babc

View file

@ -104,7 +104,7 @@ abstract class PhabricatorModularTransaction
return $title;
}
return $this->getTitle();
return parent::getTitleForFeed();
}
final public function getColor() {