mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-23 07:12:41 +01:00
Fix php.net link to open in a new window
Summary: From @chad. This setup link should open in a new window so you don't lose your context in resolving setup issues. @chad, this was the only one I could find immediately, let me know if you remember seeing others that I missed. Test Plan: Faked an error, clicked the link, got a new tab. Reviewers: chad, btrahan Reviewed By: chad CC: chad, aran Differential Revision: https://secure.phabricator.com/D7991
This commit is contained in:
parent
e6a6c265b0
commit
3770998c39
1 changed files with 8 additions and 3 deletions
|
@ -318,9 +318,14 @@ final class PhabricatorSetupIssueView extends AphrontView {
|
||||||
array(),
|
array(),
|
||||||
pht(
|
pht(
|
||||||
'You can find more information about PHP configuration values in the '.
|
'You can find more information about PHP configuration values in the '.
|
||||||
'<a href="%s">PHP Documentation</a>.',
|
'%s.',
|
||||||
'http://php.net/manual/ini.list.php',
|
phutil_tag(
|
||||||
hsprintf('')));
|
'a',
|
||||||
|
array(
|
||||||
|
'href' => 'http://php.net/manual/ini.list.php',
|
||||||
|
'target' => '_blank',
|
||||||
|
),
|
||||||
|
pht('PHP Documentation'))));
|
||||||
|
|
||||||
$info[] = phutil_tag(
|
$info[] = phutil_tag(
|
||||||
'p',
|
'p',
|
||||||
|
|
Loading…
Reference in a new issue