mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-29 18:22:41 +01:00
Minor, fix spelling issues detected by linter.
This commit is contained in:
parent
d1ee08b2df
commit
27f52efd37
3 changed files with 5 additions and 4 deletions
|
@ -87,7 +87,7 @@ return array(
|
||||||
// exposes sensitive information to users, so make sure untrusted users can
|
// exposes sensitive information to users, so make sure untrusted users can
|
||||||
// not access an install running in this mode. You should definitely leave
|
// not access an install running in this mode. You should definitely leave
|
||||||
// this off in production. It is only really useful for using DarkConsole
|
// this off in production. It is only really useful for using DarkConsole
|
||||||
// utilties to debug or profile logged-out pages. You must set
|
// utilities to debug or profile logged-out pages. You must set
|
||||||
// 'darkconsole.enabled' to use this option.
|
// 'darkconsole.enabled' to use this option.
|
||||||
'darkconsole.always-on' => false,
|
'darkconsole.always-on' => false,
|
||||||
|
|
||||||
|
@ -442,7 +442,7 @@ return array(
|
||||||
// This makes it harder to miss problems while developing Phabricator.
|
// This makes it harder to miss problems while developing Phabricator.
|
||||||
'phabricator.show-error-callout' => false,
|
'phabricator.show-error-callout' => false,
|
||||||
|
|
||||||
// When users write comments which have URIs, they'll be automaticaly linked
|
// When users write comments which have URIs, they'll be automatically linked
|
||||||
// if the protocol appears in this set. This whitelist is primarily to prevent
|
// if the protocol appears in this set. This whitelist is primarily to prevent
|
||||||
// security issues like javascript:// URIs.
|
// security issues like javascript:// URIs.
|
||||||
'uri.allowed-protocols' => array(
|
'uri.allowed-protocols' => array(
|
||||||
|
|
|
@ -57,7 +57,8 @@ class AphrontDefaultApplicationConfiguration
|
||||||
'delete/(?P<id>\d+)/$' => 'PhabricatorFileDeleteController',
|
'delete/(?P<id>\d+)/$' => 'PhabricatorFileDeleteController',
|
||||||
'(?P<view>info)/(?P<phid>[^/]+)/' => 'PhabricatorFileViewController',
|
'(?P<view>info)/(?P<phid>[^/]+)/' => 'PhabricatorFileViewController',
|
||||||
'(?P<view>view)/(?P<phid>[^/]+)/' => 'PhabricatorFileViewController',
|
'(?P<view>view)/(?P<phid>[^/]+)/' => 'PhabricatorFileViewController',
|
||||||
'(?P<view>download)/(?P<phid>[^/]+)/' => 'PhabricatorFileViewController',
|
'(?P<view>download)/(?P<phid>[^/]+)/'
|
||||||
|
=> 'PhabricatorFileViewController',
|
||||||
'alt/(?P<key>[^/]+)/(?P<phid>[^/]+)/'
|
'alt/(?P<key>[^/]+)/(?P<phid>[^/]+)/'
|
||||||
=> 'PhabricatorFileAltViewController',
|
=> 'PhabricatorFileAltViewController',
|
||||||
'macro/' => array(
|
'macro/' => array(
|
||||||
|
|
|
@ -41,7 +41,7 @@ class PhabricatorRepositoryDefaultCommitMessageDetailParser
|
||||||
// then anyone importing the Phabricator repository will have their
|
// then anyone importing the Phabricator repository will have their
|
||||||
// first few thousand revisions marked committed. This does mean that
|
// first few thousand revisions marked committed. This does mean that
|
||||||
// some older revisions won't re-parse correctly, but that shouldn't
|
// some older revisions won't re-parse correctly, but that shouldn't
|
||||||
// really affect anyone. If necesary, an install can extend the parser
|
// really affect anyone. If necessary, an install can extend the parser
|
||||||
// and restore the older, more-liberal parsing fairly easily.
|
// and restore the older, more-liberal parsing fairly easily.
|
||||||
|
|
||||||
$id = DifferentialRevisionIDFieldSpecification::parseRevisionIDFromURI(
|
$id = DifferentialRevisionIDFieldSpecification::parseRevisionIDFromURI(
|
||||||
|
|
Loading…
Reference in a new issue