mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-22 14:52:41 +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:
parent
37ecdf2336
commit
ce5e0f3e33
1 changed files with 2 additions and 2 deletions
|
@ -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'));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue