mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Change default value for bugtraq.url
Summary: `null` is a more-intuitive default value than `''`, methinks. Test Plan: Eyeball it. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D12671
This commit is contained in:
parent
6817e55ec6
commit
791de0886f
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ final class PhabricatorDiffusionConfigOptions
|
|||
))
|
||||
->setDescription(pht('Controls whether Author can Close Audits.')),
|
||||
|
||||
$this->newOption('bugtraq.url', 'string', '')
|
||||
$this->newOption('bugtraq.url', 'string', null)
|
||||
->addExample('https://bugs.php.net/%BUGID%', pht('PHP bugs'))
|
||||
->addExample('/%BUGID%', pht('Local Maniphest URL'))
|
||||
->setDescription(pht(
|
||||
|
|
Loading…
Reference in a new issue