1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-10 00:42:41 +01:00

Update PhortuneProviderAction to newPage

Summary: Updates to `newPage`

Test Plan: Unsure what specifically to test? Couldn't find where it's called.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Differential Revision: https://secure.phabricator.com/D15600
This commit is contained in:
Chad Little 2016-04-03 13:48:05 -07:00
parent e61e426108
commit 49e5763cd0

View file

@ -39,11 +39,12 @@ final class PhortuneProviderActionController
return $response;
}
return $this->buildApplicationPage(
$response,
array(
'title' => pht('Phortune'),
));
$title = pht('Phortune');
return $this->newPage()
->setTitle($title)
->appendChild($response);
}