From dba984bd87f233d8ebd34062f06da8e3bc07bb56 Mon Sep 17 00:00:00 2001 From: epriestley Date: Thu, 9 Apr 2015 13:10:19 -0700 Subject: [PATCH] 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 --- .../PhabricatorApplicationTransactionValueController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/transactions/controller/PhabricatorApplicationTransactionValueController.php b/src/applications/transactions/controller/PhabricatorApplicationTransactionValueController.php index 7905b8c070..37008db6d3 100644 --- a/src/applications/transactions/controller/PhabricatorApplicationTransactionValueController.php +++ b/src/applications/transactions/controller/PhabricatorApplicationTransactionValueController.php @@ -118,7 +118,7 @@ final class PhabricatorApplicationTransactionValueController if ($handle_phids) { $value = $this->getViewer() ->renderHandleList($handle_phids) - ->setInline(true); + ->setAsInline(true); } else { $value = $rule['value']; }