@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.

Remove deprecated call to renderSingleView

Summary: Return an array of renderables instead of rendering things ourselves (which we used to do with `AphrontView->renderSingleView()`.)

Test Plan: View a Releeph branch; gloriously notice no deprecated warnings.

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

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

+1 -3
+1 -3
src/applications/releeph/view/request/header/ReleephRequestHeaderListView.php
··· 66 66 ), 67 67 $views); 68 68 69 - return $this->renderSingleView(array( 70 - $error_view, 71 - $list)); 69 + return array($error_view, $list); 72 70 } 73 71 74 72 /**