1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 17:28:51 +02:00

Initialize used variable

Blame Rev: rP5ad52694

Auditor: stephenyeargin
This commit is contained in:
Jakub Vrana 2013-07-09 18:16:44 -07:00
parent 93e37e9060
commit 63b4183d9a

View file

@ -136,7 +136,8 @@ extends PhabricatorAuthController {
// display time -- make a nice form for the user to grant the client
// access to the granularity specified by $scope
$title = 'Authorize '.$client->getName().'?';
$name = $client->getName();
$title = pht('Authorize %s?', $name);
$panel = new AphrontPanelView();
$panel->setWidth(AphrontPanelView::WIDTH_FORM);
$panel->setHeader($title);