From ba05ac595c73d6f2315ed965b6dd99326ca55b78 Mon Sep 17 00:00:00 2001 From: epriestley Date: Tue, 14 Feb 2012 15:40:04 -0800 Subject: [PATCH] Minor, fix a fatal on Herald Admin controller Summary: Just a bad merge for the edit history, I think. We need to pass $user or we fatal trying to render timestamps. https://secure.phabricator.com/herald/all/view/differential/ Test Plan: Looked at Herald admin view. Reviewers: jungejason, xela, nh, btrahan, fratrik Reviewed By: fratrik CC: aran, epriestley Differential Revision: https://secure.phabricator.com/D1611 --- .../herald/controller/all/HeraldAllRulesController.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/applications/herald/controller/all/HeraldAllRulesController.php b/src/applications/herald/controller/all/HeraldAllRulesController.php index 76300b9c65..f6097494ef 100644 --- a/src/applications/herald/controller/all/HeraldAllRulesController.php +++ b/src/applications/herald/controller/all/HeraldAllRulesController.php @@ -92,6 +92,7 @@ class HeraldAllRulesController extends HeraldController { ->setMap($map) ->setShowType(true) ->setAllowCreation(false) + ->setUser($user) ->setView($this->view); $panel = $list_view->render(); $panel->appendChild($pager);