1
0
Fork 0
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:
Edward Speyer 2013-03-15 19:25:21 +00:00
parent c55b866d3c
commit 66b414188c

View file

@ -66,9 +66,7 @@ final class ReleephRequestHeaderListView
),
$views);
return $this->renderSingleView(array(
$error_view,
$list));
return array($error_view, $list);
}
/**