Skip to content

Commit 63b4183

Browse files
committed
Initialize used variable
Blame Rev: rP5ad52694 Auditor: stephenyeargin
1 parent 93e37e9 commit 63b4183

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/applications/oauthserver/controller/PhabricatorOAuthServerAuthController.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,8 @@ public function processRequest() {
136136

137137
// display time -- make a nice form for the user to grant the client
138138
// access to the granularity specified by $scope
139-
$title = 'Authorize '.$client->getName().'?';
139+
$name = $client->getName();
140+
$title = pht('Authorize %s?', $name);
140141
$panel = new AphrontPanelView();
141142
$panel->setWidth(AphrontPanelView::WIDTH_FORM);
142143
$panel->setHeader($title);

0 commit comments

Comments
 (0)