1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-25 14:08:19 +01:00

Capitalize "OPcache" more consistently

Summary: Fixes T13174. PHP spells this "OPcache" (lowercase "c"); we're inconsistent. Be more consistent.

Test Plan:
  - `git grep OPCache`
  - `git grep -i opcache | grep -v opcache | grep -v OPcache`

Reviewers: amckinley

Reviewed By: amckinley

Maniphest Tasks: T13174

Differential Revision: https://secure.phabricator.com/D19538
This commit is contained in:
epriestley 2018-07-26 09:51:52 -07:00
parent 9e1a1577c3
commit 727bc2234c
2 changed files with 3 additions and 3 deletions

View file

@ -143,7 +143,7 @@ final class PhabricatorOpcodeCacheSpec extends PhabricatorCacheSpec {
$this $this
->newIssue('extension.opcache.devmode') ->newIssue('extension.opcache.devmode')
->setShortName(pht('OPcache Config')) ->setShortName(pht('OPcache Config'))
->setName(pht('OPCache Not Configured for Development')) ->setName(pht('OPcache Not Configured for Development'))
->setSummary($summary) ->setSummary($summary)
->setMessage($message) ->setMessage($message)
->addPHPConfig('opcache.validate_timestamps') ->addPHPConfig('opcache.validate_timestamps')

View file

@ -445,7 +445,7 @@ final class PhabricatorSetupIssueView extends AphrontView {
'p', 'p',
array(), array(),
pht( pht(
'You can find more information about configuring OPCache in '. 'You can find more information about configuring OPcache in '.
'the %s.', 'the %s.',
phutil_tag( phutil_tag(
'a', 'a',
@ -453,7 +453,7 @@ final class PhabricatorSetupIssueView extends AphrontView {
'href' => 'http://php.net/manual/opcache.configuration.php', 'href' => 'http://php.net/manual/opcache.configuration.php',
'target' => '_blank', 'target' => '_blank',
), ),
pht('PHP OPCache Documentation')))); pht('PHP OPcache Documentation'))));
} }
$info[] = phutil_tag( $info[] = phutil_tag(