@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+3 -3
+1 -1
src/applications/cache/spec/PhabricatorOpcodeCacheSpec.php
··· 143 143 $this 144 144 ->newIssue('extension.opcache.devmode') 145 145 ->setShortName(pht('OPcache Config')) 146 - ->setName(pht('OPCache Not Configured for Development')) 146 + ->setName(pht('OPcache Not Configured for Development')) 147 147 ->setSummary($summary) 148 148 ->setMessage($message) 149 149 ->addPHPConfig('opcache.validate_timestamps')
+2 -2
src/applications/config/view/PhabricatorSetupIssueView.php
··· 445 445 'p', 446 446 array(), 447 447 pht( 448 - 'You can find more information about configuring OPCache in '. 448 + 'You can find more information about configuring OPcache in '. 449 449 'the %s.', 450 450 phutil_tag( 451 451 'a', ··· 453 453 'href' => 'http://php.net/manual/opcache.configuration.php', 454 454 'target' => '_blank', 455 455 ), 456 - pht('PHP OPCache Documentation')))); 456 + pht('PHP OPcache Documentation')))); 457 457 } 458 458 459 459 $info[] = phutil_tag(