mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01: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:
parent
fc1c633bae
commit
e44d92babc
1 changed files with 1 additions and 1 deletions
|
@ -104,7 +104,7 @@ abstract class PhabricatorModularTransaction
|
||||||
return $title;
|
return $title;
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this->getTitle();
|
return parent::getTitleForFeed();
|
||||||
}
|
}
|
||||||
|
|
||||||
final public function getColor() {
|
final public function getColor() {
|
||||||
|
|
Loading…
Reference in a new issue