diff --git a/src/applications/phortune/controller/PhortuneProviderActionController.php b/src/applications/phortune/controller/PhortuneProviderActionController.php --- a/src/applications/phortune/controller/PhortuneProviderActionController.php +++ b/src/applications/phortune/controller/PhortuneProviderActionController.php @@ -39,11 +39,12 @@ return $response; } - return $this->buildApplicationPage( - $response, - array( - 'title' => pht('Phortune'), - )); + $title = pht('Phortune'); + + return $this->newPage() + ->setTitle($title) + ->appendChild($response); + }