@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

ObjectBoxView for Open Revisions

Summary: Missed this case in my sandbox

Test Plan: Reload a test diff

Reviewers: epriestley

Reviewed By: epriestley

CC: Korvin, aran

Differential Revision: https://secure.phabricator.com/D7168

+3 -5
+3 -5
src/applications/differential/controller/DifferentialRevisionViewController.php
··· 870 870 $handles = $this->loadViewerHandles($phids); 871 871 $view->setHandles($handles); 872 872 873 - return array( 874 - id(new PHUIHeaderView()) 875 - ->setHeader(pht('Open Revisions Affecting These Files')), 876 - $view, 877 - ); 873 + return id(new PHUIObjectBoxView()) 874 + ->setHeaderText(pht('Open Revisions Affecting These Files')) 875 + ->addContent($view); 878 876 } 879 877 880 878 /**