From b71e0896693434f2d4e0f20a0e8cf4ae6f371cc9 Mon Sep 17 00:00:00 2001 From: epriestley Date: Mon, 13 Feb 2017 06:17:55 -0800 Subject: [PATCH] Fix a fatal when viewing methods which no longer exist in the Conduit call log Summary: Fixes T12252. Test Plan: I just faked this, but likely repro is: - Call method `x.y`. - Remove method `x.y` from the codebase. - View log. Reviewers: chad Reviewed By: chad Maniphest Tasks: T12252 Differential Revision: https://secure.phabricator.com/D17342 --- .../conduit/query/PhabricatorConduitLogSearchEngine.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/conduit/query/PhabricatorConduitLogSearchEngine.php b/src/applications/conduit/query/PhabricatorConduitLogSearchEngine.php index 4c91ce7a8d..68f7060507 100644 --- a/src/applications/conduit/query/PhabricatorConduitLogSearchEngine.php +++ b/src/applications/conduit/query/PhabricatorConduitLogSearchEngine.php @@ -162,7 +162,7 @@ final class PhabricatorConduitLogSearchEngine ->addSigil('has-tooltip') ->setMetadata( array( - 'tip' => pht('Unknown ("%s")', $status), + 'tip' => pht('Unknown ("%s")', $method_status), )); break; }