mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-19 13:22:42 +01:00
Fix bad rendering for custom policy descriptions
Summary: This call got renamed but I missed the callsite. Test Plan: No more fatal when viewing a custom policy from a transaction history page. Reviewers: btrahan, chad, Mnkras Reviewed By: chad, Mnkras Subscribers: epriestley Differential Revision: https://secure.phabricator.com/D12337
This commit is contained in:
parent
e0473aa702
commit
dba984bd87
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ final class PhabricatorApplicationTransactionValueController
|
||||||
if ($handle_phids) {
|
if ($handle_phids) {
|
||||||
$value = $this->getViewer()
|
$value = $this->getViewer()
|
||||||
->renderHandleList($handle_phids)
|
->renderHandleList($handle_phids)
|
||||||
->setInline(true);
|
->setAsInline(true);
|
||||||
} else {
|
} else {
|
||||||
$value = $rule['value'];
|
$value = $rule['value'];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue