Changeset 2082909
- Timestamp:
- 05/07/2019 11:00:23 PM (7 years ago)
- Location:
- waj-copyright-year
- Files:
-
- 31 added
- 3 edited
-
tags/1.0.4 (added)
-
tags/1.0.4/LICENSE (added)
-
tags/1.0.4/composer.json (added)
-
tags/1.0.4/readme.txt (added)
-
tags/1.0.4/src (added)
-
tags/1.0.4/src/CopyrightYear.php (added)
-
tags/1.0.4/vendor (added)
-
tags/1.0.4/vendor/autoload.php (added)
-
tags/1.0.4/vendor/bin (added)
-
tags/1.0.4/vendor/composer (added)
-
tags/1.0.4/vendor/composer/ClassLoader.php (added)
-
tags/1.0.4/vendor/composer/LICENSE (added)
-
tags/1.0.4/vendor/composer/autoload_classmap.php (added)
-
tags/1.0.4/vendor/composer/autoload_files.php (added)
-
tags/1.0.4/vendor/composer/autoload_namespaces.php (added)
-
tags/1.0.4/vendor/composer/autoload_psr4.php (added)
-
tags/1.0.4/vendor/composer/autoload_real.php (added)
-
tags/1.0.4/vendor/composer/autoload_static.php (added)
-
tags/1.0.4/vendor/composer/installed.json (added)
-
tags/1.0.4/vendor/waughj (added)
-
tags/1.0.4/vendor/waughj/test-hash-item (added)
-
tags/1.0.4/vendor/waughj/test-hash-item/.gitignore (added)
-
tags/1.0.4/vendor/waughj/test-hash-item/LICENSE (added)
-
tags/1.0.4/vendor/waughj/test-hash-item/README.md (added)
-
tags/1.0.4/vendor/waughj/test-hash-item/composer.json (added)
-
tags/1.0.4/vendor/waughj/test-hash-item/phpunit.xml (added)
-
tags/1.0.4/vendor/waughj/test-hash-item/src (added)
-
tags/1.0.4/vendor/waughj/test-hash-item/src/TestHashItem.php (added)
-
tags/1.0.4/vendor/waughj/test-hash-item/tests (added)
-
tags/1.0.4/vendor/waughj/test-hash-item/tests/TestHashItemTest.php (added)
-
tags/1.0.4/waj-copyright-year.php (added)
-
trunk/composer.json (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/vendor/composer/ClassLoader.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
waj-copyright-year/trunk/composer.json
r1963099 r2082909 16 16 }, 17 17 "require-dev": { 18 "phpunit/phpunit": " 6.*"18 "phpunit/phpunit": "*" 19 19 }, 20 20 "autoload": { -
waj-copyright-year/trunk/readme.txt
r2058433 r2082909 3 3 Tags: copyright, year, footer, auto-update, new year 4 4 Requires at least: 4.9.8 5 Tested up to: 5. 1.16 Stable tag: 1.0. 35 Tested up to: 5.2 6 Stable tag: 1.0.4 7 7 Requires PHP: 7.0 8 8 License: GPLv2 or later … … 59 59 == Changelog == 60 60 61 = 1.0.4 = 62 * Test in WordPress version 5.2. 63 61 64 = 1.0.3 = 62 65 * Update dependencies -
waj-copyright-year/trunk/vendor/composer/ClassLoader.php
r1963099 r2082909 280 280 public function setApcuPrefix($apcuPrefix) 281 281 { 282 $this->apcuPrefix = function_exists('apcu_fetch') && ini_get('apc.enabled') ? $apcuPrefix : null;282 $this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null; 283 283 } 284 284 … … 378 378 while (false !== $lastPos = strrpos($subPath, '\\')) { 379 379 $subPath = substr($subPath, 0, $lastPos); 380 $search = $subPath .'\\';380 $search = $subPath . '\\'; 381 381 if (isset($this->prefixDirsPsr4[$search])) { 382 382 $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1);
Note: See TracChangeset
for help on using the changeset viewer.