mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
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
This commit is contained in:
parent
c55b866d3c
commit
66b414188c
1 changed files with 1 additions and 3 deletions
|
@ -66,9 +66,7 @@ final class ReleephRequestHeaderListView
|
|||
),
|
||||
$views);
|
||||
|
||||
return $this->renderSingleView(array(
|
||||
$error_view,
|
||||
$list));
|
||||
return array($error_view, $list);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue