From f9f70dc2e9caf98fa42a187c71e8d296dc963031 Mon Sep 17 00:00:00 2001 From: epriestley Date: Thu, 26 Dec 2013 11:35:43 -0800 Subject: [PATCH] Use correct method name in Harbormaster UI event listener Summary: See thread; fixes fatal. The actual name of this method is `getHarbormaster...`. NOTE: This fixes a fatal in Differential which impedes review, so I'm pushing it as-is. Test Plan: Browsed a revision. Reviewers: btrahan CC: aran Differential Revision: https://secure.phabricator.com/D7834 --- .../harbormaster/event/HarbormasterUIEventListener.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/harbormaster/event/HarbormasterUIEventListener.php b/src/applications/harbormaster/event/HarbormasterUIEventListener.php index d49fed5a73..bec5b723b6 100644 --- a/src/applications/harbormaster/event/HarbormasterUIEventListener.php +++ b/src/applications/harbormaster/event/HarbormasterUIEventListener.php @@ -35,7 +35,7 @@ final class HarbormasterUIEventListener return; } - $buildable_phid = $object->getBuildablePHID(); + $buildable_phid = $object->getHarbormasterBuildablePHID(); if (!$buildable_phid) { return; }