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

Fix doc link to Restarting Phorge

Summary: See Q81. Link to /diviner/find/ could not find the documentation because it was renamed to "Restarting Phorge".

Test Plan:
1. Uninstall optional PHP extension zip and restart Phorge
2. Vist /config/issue/ and click on a missing extension issue
3. Click on the documentation link to Restarting

Reviewers: O1 Blessed Committers, valerio.bozzolan, speck

Reviewed By: O1 Blessed Committers, valerio.bozzolan, speck

Subscribers: speck, tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Differential Revision: https://we.phorge.it/D25459
This commit is contained in:
Zero King 2023-11-08 21:31:39 +08:00
parent 37ecdf2336
commit ce5e0f3e33

View file

@ -603,14 +603,14 @@ final class PhabricatorSetupIssueView extends AphrontView {
} }
private function renderRestartLink() { private function renderRestartLink() {
$doc_href = PhabricatorEnv::getDoclink('Restarting Phabricator'); $doc_href = PhabricatorEnv::getDoclink('Restarting Phorge');
return phutil_tag( return phutil_tag(
'a', 'a',
array( array(
'href' => $doc_href, 'href' => $doc_href,
'target' => '_blank', 'target' => '_blank',
), ),
pht('Restarting Phabricator')); pht('Restarting'));
} }
} }