Fix 2 minor issues with Durable Column
Summary: I left in an opacity change by mistake, and fix language on threads. Test Plan: review in sandbox Reviewers: epriestley, btrahan Reviewed By: btrahan Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D12054
This commit is contained in:
@@ -55,18 +55,18 @@ final class ConpherenceTransaction extends PhabricatorApplicationTransaction {
|
||||
case ConpherenceTransactionType::TYPE_TITLE:
|
||||
if ($old && $new) {
|
||||
$title = pht(
|
||||
'%s renamed this Thread from "%s" to "%s".',
|
||||
'%s renamed this thread from "%s" to "%s".',
|
||||
$this->renderHandleLink($author_phid),
|
||||
$old,
|
||||
$new);
|
||||
} else if ($old) {
|
||||
$title = pht(
|
||||
'%s deleted the Thread name "%s".',
|
||||
'%s deleted the thread name "%s".',
|
||||
$this->renderHandleLink($author_phid),
|
||||
$old);
|
||||
} else {
|
||||
$title = pht(
|
||||
'%s named this Thread "%s".',
|
||||
'%s named this thread "%s".',
|
||||
$this->renderHandleLink($author_phid),
|
||||
$new);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user