@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Initialize used variable

Blame Rev: rP5ad52694

Auditor: stephenyeargin

+2 -1
+2 -1
src/applications/oauthserver/controller/PhabricatorOAuthServerAuthController.php
··· 136 136 137 137 // display time -- make a nice form for the user to grant the client 138 138 // access to the granularity specified by $scope 139 - $title = 'Authorize '.$client->getName().'?'; 139 + $name = $client->getName(); 140 + $title = pht('Authorize %s?', $name); 140 141 $panel = new AphrontPanelView(); 141 142 $panel->setWidth(AphrontPanelView::WIDTH_FORM); 142 143 $panel->setHeader($title);