diff --git a/src/applications/xhprof/controller/PhabricatorXHProfProfileController.php b/src/applications/xhprof/controller/PhabricatorXHProfProfileController.php --- a/src/applications/xhprof/controller/PhabricatorXHProfProfileController.php +++ b/src/applications/xhprof/controller/PhabricatorXHProfProfileController.php @@ -5,6 +5,10 @@ private $phid; + public function shouldAllowPublic() { + return true; + } + public function willProcessRequest(array $data) { $this->phid = $data['phid']; } diff --git a/src/applications/xhprof/controller/PhabricatorXHProfSampleListController.php b/src/applications/xhprof/controller/PhabricatorXHProfSampleListController.php --- a/src/applications/xhprof/controller/PhabricatorXHProfSampleListController.php +++ b/src/applications/xhprof/controller/PhabricatorXHProfSampleListController.php @@ -5,6 +5,10 @@ private $view; + public function shouldAllowPublic() { + return true; + } + public function willProcessRequest(array $data) { $this->view = idx($data, 'view', 'all'); }