From c3e16e26c9fd7acdfa5c6a12d8c591ac46d7a857 Mon Sep 17 00:00:00 2001 From: Chad Little Date: Sun, 19 Jul 2015 07:43:20 -0700 Subject: [PATCH] Fix header object call in Releeph Summary: These were recently removed and are hard to find. Test Plan: I honestly didn't test this. Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D13657 --- src/applications/releeph/view/ReleephRequestView.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/applications/releeph/view/ReleephRequestView.php b/src/applications/releeph/view/ReleephRequestView.php index 7514e0c062..ef00c5d63d 100644 --- a/src/applications/releeph/view/ReleephRequestView.php +++ b/src/applications/releeph/view/ReleephRequestView.php @@ -116,10 +116,6 @@ final class ReleephRequestView extends AphrontView { $text = ReleephRequestStatus::getStatusDescriptionFor($pull->getStatus()); $header->setStatus($icon, $color, $text); - if ($this->getIsListView()) { - $header->setObjectName($pull->getMonogram()); - } - return $header; }