mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-10 14:51:06 +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:
parent
9e1a1577c3
commit
727bc2234c
2 changed files with 3 additions and 3 deletions
|
@ -143,7 +143,7 @@ final class PhabricatorOpcodeCacheSpec extends PhabricatorCacheSpec {
|
|||
$this
|
||||
->newIssue('extension.opcache.devmode')
|
||||
->setShortName(pht('OPcache Config'))
|
||||
->setName(pht('OPCache Not Configured for Development'))
|
||||
->setName(pht('OPcache Not Configured for Development'))
|
||||
->setSummary($summary)
|
||||
->setMessage($message)
|
||||
->addPHPConfig('opcache.validate_timestamps')
|
||||
|
|
|
@ -445,7 +445,7 @@ final class PhabricatorSetupIssueView extends AphrontView {
|
|||
'p',
|
||||
array(),
|
||||
pht(
|
||||
'You can find more information about configuring OPCache in '.
|
||||
'You can find more information about configuring OPcache in '.
|
||||
'the %s.',
|
||||
phutil_tag(
|
||||
'a',
|
||||
|
@ -453,7 +453,7 @@ final class PhabricatorSetupIssueView extends AphrontView {
|
|||
'href' => 'http://php.net/manual/opcache.configuration.php',
|
||||
'target' => '_blank',
|
||||
),
|
||||
pht('PHP OPCache Documentation'))));
|
||||
pht('PHP OPcache Documentation'))));
|
||||
}
|
||||
|
||||
$info[] = phutil_tag(
|
||||
|
|
Loading…
Reference in a new issue