Version Description
Download this release
Release Info
Developer | samiff |
Plugin | VaultPress |
Version | 2.2.2 |
Comparing to | |
See all releases |
Code changes from version 2.2.1 to 2.2.2
- .phpcs.dir.xml +0 -24
- CHANGELOG.md +8 -1
- composer.json +3 -3
- readme.txt +8 -6
- vaultpress.php +2 -2
- vendor/autoload.php +6 -1
- vendor/autoload_packages.php +1 -1
- vendor/automattic/jetpack-logo/CHANGELOG.md +10 -0
- vendor/automattic/jetpack-logo/composer.json +2 -3
- vendor/composer/InstalledVersions.php +2 -0
- vendor/composer/autoload_classmap.php +1 -1
- vendor/composer/autoload_namespaces.php +1 -1
- vendor/composer/autoload_psr4.php +1 -1
- vendor/composer/autoload_real.php +6 -15
- vendor/composer/autoload_static.php +4 -4
- vendor/composer/installed.json +22 -22
- vendor/composer/installed.php +10 -10
- vendor/composer/jetpack_autoload_classmap.php +13 -13
- vendor/jetpack-autoloader/class-autoloader-handler.php +1 -1
- vendor/jetpack-autoloader/class-autoloader-locator.php +1 -1
- vendor/jetpack-autoloader/class-autoloader.php +1 -1
- vendor/jetpack-autoloader/class-container.php +1 -1
- vendor/jetpack-autoloader/class-hook-manager.php +1 -1
- vendor/jetpack-autoloader/class-latest-autoloader-guard.php +1 -1
- vendor/jetpack-autoloader/class-manifest-reader.php +1 -1
- vendor/jetpack-autoloader/class-path-processor.php +1 -1
- vendor/jetpack-autoloader/class-php-autoloader.php +1 -1
- vendor/jetpack-autoloader/class-plugin-locator.php +4 -1
- vendor/jetpack-autoloader/class-plugins-handler.php +1 -1
- vendor/jetpack-autoloader/class-shutdown-handler.php +1 -1
- vendor/jetpack-autoloader/class-version-loader.php +1 -1
- vendor/jetpack-autoloader/class-version-selector.php +2 -2
.phpcs.dir.xml
DELETED
@@ -1,24 +0,0 @@
|
|
1 |
-
<?xml version="1.0"?>
|
2 |
-
<ruleset>
|
3 |
-
|
4 |
-
<rule ref="WordPress.WP.I18n">
|
5 |
-
<properties>
|
6 |
-
<property name="text_domain" type="array">
|
7 |
-
<element value="vaultpress" />
|
8 |
-
</property>
|
9 |
-
</properties>
|
10 |
-
</rule>
|
11 |
-
<rule ref="Jetpack.Functions.I18n">
|
12 |
-
<properties>
|
13 |
-
<property name="text_domain" value="vaultpress" />
|
14 |
-
</properties>
|
15 |
-
</rule>
|
16 |
-
|
17 |
-
<rule ref="WordPress.Utils.I18nTextDomainFixer">
|
18 |
-
<properties>
|
19 |
-
<property name="old_text_domain" type="array" />
|
20 |
-
<property name="new_text_domain" value="vaultpress" />
|
21 |
-
</properties>
|
22 |
-
</rule>
|
23 |
-
|
24 |
-
</ruleset>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
CHANGELOG.md
CHANGED
@@ -2,6 +2,14 @@
|
|
2 |
|
3 |
All notable changes to this project will be documented in this file.
|
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
## 2.2.1 - 2022-02-01
|
6 |
### Changed
|
7 |
- Colors: update colors to match the latest iterations of our brand.
|
@@ -10,7 +18,6 @@ All notable changes to this project will be documented in this file.
|
|
10 |
- Switch to pcov for code coverage.
|
11 |
- Updated package dependencies.
|
12 |
|
13 |
-
|
14 |
## 2.2.0 - 2021-10-11
|
15 |
### Changed
|
16 |
- Tests: update PHPUnit polyfills dependency (yoast/phpunit-polyfills).
|
2 |
|
3 |
All notable changes to this project will be documented in this file.
|
4 |
|
5 |
+
## 2.2.2 - 2022-07-06
|
6 |
+
### Changed
|
7 |
+
- Build: do not ship PHPCS configuration file. [#22604]
|
8 |
+
- Janitorial: require a more recent version of WordPress now that WP 6.0 is coming out. [#24083]
|
9 |
+
- Renaming `master` references to `trunk`. [#24712]
|
10 |
+
- Updated composer.lock [#22920]
|
11 |
+
- Updated package dependencies.
|
12 |
+
|
13 |
## 2.2.1 - 2022-02-01
|
14 |
### Changed
|
15 |
- Colors: update colors to match the latest iterations of our brand.
|
18 |
- Switch to pcov for code coverage.
|
19 |
- Updated package dependencies.
|
20 |
|
|
|
21 |
## 2.2.0 - 2021-10-11
|
22 |
### Changed
|
23 |
- Tests: update PHPUnit polyfills dependency (yoast/phpunit-polyfills).
|
composer.json
CHANGED
@@ -9,11 +9,11 @@
|
|
9 |
},
|
10 |
"require": {
|
11 |
"automattic/jetpack-logo": "^1.5",
|
12 |
-
"automattic/jetpack-autoloader": "^2.
|
13 |
},
|
14 |
"require-dev": {
|
15 |
"yoast/phpunit-polyfills": "1.0.3",
|
16 |
-
"automattic/jetpack-changelogger": "^3.
|
17 |
},
|
18 |
"scripts": {
|
19 |
"phpunit": [
|
@@ -30,7 +30,7 @@
|
|
30 |
"minimum-stability": "dev",
|
31 |
"prefer-stable": true,
|
32 |
"config": {
|
33 |
-
"autoloader-suffix": "9559eef123208b7d1b9c15b978567267_vaultpressⓥ
|
34 |
"allow-plugins": {
|
35 |
"automattic/jetpack-autoloader": true
|
36 |
}
|
9 |
},
|
10 |
"require": {
|
11 |
"automattic/jetpack-logo": "^1.5",
|
12 |
+
"automattic/jetpack-autoloader": "^2.11"
|
13 |
},
|
14 |
"require-dev": {
|
15 |
"yoast/phpunit-polyfills": "1.0.3",
|
16 |
+
"automattic/jetpack-changelogger": "^3.1"
|
17 |
},
|
18 |
"scripts": {
|
19 |
"phpunit": [
|
30 |
"minimum-stability": "dev",
|
31 |
"prefer-stable": true,
|
32 |
"config": {
|
33 |
+
"autoloader-suffix": "9559eef123208b7d1b9c15b978567267_vaultpressⓥ2_2_2",
|
34 |
"allow-plugins": {
|
35 |
"automattic/jetpack-autoloader": true
|
36 |
}
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: automattic, annezazu, apokalyptik, bjorsch, briancolinger, dsmart,
|
|
3 |
Tags: security, malware, virus, archive, back up, back ups, backup, backups, scanning, restore, wordpress backup, site backup, website backup
|
4 |
Requires at least: 5.2
|
5 |
Tested up to: 6.0
|
6 |
-
Stable tag: 2.2.
|
7 |
Requires PHP: 5.6
|
8 |
License: GPLv2
|
9 |
|
@@ -48,12 +48,14 @@ A VaultPress subscription is for a single WordPress site. You can purchase addit
|
|
48 |
Yes, VaultPress supports Multisite installs. Each site will require its own subscription.
|
49 |
|
50 |
== Changelog ==
|
51 |
-
### 2.2.
|
52 |
#### Changed
|
53 |
-
-
|
54 |
-
-
|
55 |
-
|
|
|
|
|
56 |
|
57 |
--------
|
58 |
|
59 |
-
[See the previous changelogs here](https://github.com/Automattic/jetpack/blob/
|
3 |
Tags: security, malware, virus, archive, back up, back ups, backup, backups, scanning, restore, wordpress backup, site backup, website backup
|
4 |
Requires at least: 5.2
|
5 |
Tested up to: 6.0
|
6 |
+
Stable tag: 2.2.2
|
7 |
Requires PHP: 5.6
|
8 |
License: GPLv2
|
9 |
|
48 |
Yes, VaultPress supports Multisite installs. Each site will require its own subscription.
|
49 |
|
50 |
== Changelog ==
|
51 |
+
### 2.2.2 - 2022-07-06
|
52 |
#### Changed
|
53 |
+
- Build: do not ship PHPCS configuration file.
|
54 |
+
- Janitorial: require a more recent version of WordPress now that WP 6.0 is coming out.
|
55 |
+
- Renaming `master` references to `trunk`.
|
56 |
+
- Updated composer.lock
|
57 |
+
- Updated package dependencies.
|
58 |
|
59 |
--------
|
60 |
|
61 |
+
[See the previous changelogs here](https://github.com/Automattic/jetpack/blob/trunk/projects/plugins/vaultpress/CHANGELOG.md#changelog)
|
vaultpress.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: VaultPress
|
4 |
* Plugin URI: http://vaultpress.com/?utm_source=plugin-uri&utm_medium=plugin-description&utm_campaign=1.0
|
5 |
* Description: Protect your content, themes, plugins, and settings with <strong>realtime backup</strong> and <strong>automated security scanning</strong> from <a href="http://vaultpress.com/?utm_source=wp-admin&utm_medium=plugin-description&utm_campaign=1.0" rel="nofollow">VaultPress</a>. Activate, enter your registration key, and never worry again. <a href="http://vaultpress.com/help/?utm_source=wp-admin&utm_medium=plugin-description&utm_campaign=1.0" rel="nofollow">Need some help?</a>
|
6 |
-
* Version: 2.2.
|
7 |
* Author: Automattic
|
8 |
* Author URI: http://vaultpress.com/?utm_source=author-uri&utm_medium=plugin-description&utm_campaign=1.0
|
9 |
* License: GPL2+
|
@@ -17,7 +17,7 @@
|
|
17 |
defined( 'ABSPATH' ) || die();
|
18 |
|
19 |
define( 'VAULTPRESS__MINIMUM_PHP_VERSION', '5.6' );
|
20 |
-
define( 'VAULTPRESS__VERSION', '2.2.
|
21 |
define( 'VAULTPRESS__PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
22 |
|
23 |
/**
|
3 |
* Plugin Name: VaultPress
|
4 |
* Plugin URI: http://vaultpress.com/?utm_source=plugin-uri&utm_medium=plugin-description&utm_campaign=1.0
|
5 |
* Description: Protect your content, themes, plugins, and settings with <strong>realtime backup</strong> and <strong>automated security scanning</strong> from <a href="http://vaultpress.com/?utm_source=wp-admin&utm_medium=plugin-description&utm_campaign=1.0" rel="nofollow">VaultPress</a>. Activate, enter your registration key, and never worry again. <a href="http://vaultpress.com/help/?utm_source=wp-admin&utm_medium=plugin-description&utm_campaign=1.0" rel="nofollow">Need some help?</a>
|
6 |
+
* Version: 2.2.2
|
7 |
* Author: Automattic
|
8 |
* Author URI: http://vaultpress.com/?utm_source=author-uri&utm_medium=plugin-description&utm_campaign=1.0
|
9 |
* License: GPL2+
|
17 |
defined( 'ABSPATH' ) || die();
|
18 |
|
19 |
define( 'VAULTPRESS__MINIMUM_PHP_VERSION', '5.6' );
|
20 |
+
define( 'VAULTPRESS__VERSION', '2.2.2' );
|
21 |
define( 'VAULTPRESS__PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
22 |
|
23 |
/**
|
vendor/autoload.php
CHANGED
@@ -2,6 +2,11 @@
|
|
2 |
|
3 |
// autoload.php @generated by Composer
|
4 |
|
|
|
|
|
|
|
|
|
|
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
-
return ComposerAutoloaderInit9559eef123208b7d1b9c15b978567267_vaultpressⓥ
|
2 |
|
3 |
// autoload.php @generated by Composer
|
4 |
|
5 |
+
if (PHP_VERSION_ID < 50600) {
|
6 |
+
echo 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
|
7 |
+
exit(1);
|
8 |
+
}
|
9 |
+
|
10 |
require_once __DIR__ . '/composer/autoload_real.php';
|
11 |
|
12 |
+
return ComposerAutoloaderInit9559eef123208b7d1b9c15b978567267_vaultpressⓥ2_2_2::getLoader();
|
vendor/autoload_packages.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\jp9559eef123208b7d1b9c15b978567267_vaultpressⓥ
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp9559eef123208b7d1b9c15b978567267_vaultpressⓥ2_2_2;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/automattic/jetpack-logo/CHANGELOG.md
CHANGED
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
|
|
5 |
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
6 |
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
## [1.5.14] - 2022-01-25
|
9 |
### Changed
|
10 |
- Updated package dependencies.
|
@@ -114,6 +122,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
114 |
|
115 |
- Packages: Add a basic Jetpack Logo package
|
116 |
|
|
|
|
|
117 |
[1.5.14]: https://github.com/Automattic/jetpack-logo/compare/v1.5.13...v1.5.14
|
118 |
[1.5.13]: https://github.com/Automattic/jetpack-logo/compare/v1.5.12...v1.5.13
|
119 |
[1.5.12]: https://github.com/Automattic/jetpack-logo/compare/v1.5.11...v1.5.12
|
5 |
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
6 |
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7 |
|
8 |
+
## [1.5.16] - 2022-06-21
|
9 |
+
### Changed
|
10 |
+
- Renaming master to trunk. [#24661]
|
11 |
+
|
12 |
+
## [1.5.15] - 2022-04-26
|
13 |
+
### Changed
|
14 |
+
- Updated package dependencies.
|
15 |
+
|
16 |
## [1.5.14] - 2022-01-25
|
17 |
### Changed
|
18 |
- Updated package dependencies.
|
122 |
|
123 |
- Packages: Add a basic Jetpack Logo package
|
124 |
|
125 |
+
[1.5.16]: https://github.com/Automattic/jetpack-logo/compare/v1.5.15...v1.5.16
|
126 |
+
[1.5.15]: https://github.com/Automattic/jetpack-logo/compare/v1.5.14...v1.5.15
|
127 |
[1.5.14]: https://github.com/Automattic/jetpack-logo/compare/v1.5.13...v1.5.14
|
128 |
[1.5.13]: https://github.com/Automattic/jetpack-logo/compare/v1.5.12...v1.5.13
|
129 |
[1.5.12]: https://github.com/Automattic/jetpack-logo/compare/v1.5.11...v1.5.12
|
vendor/automattic/jetpack-logo/composer.json
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
"require": {},
|
7 |
"require-dev": {
|
8 |
"yoast/phpunit-polyfills": "1.0.3",
|
9 |
-
"automattic/jetpack-changelogger": "^3.
|
10 |
},
|
11 |
"autoload": {
|
12 |
"classmap": [
|
@@ -24,7 +24,6 @@
|
|
24 |
"@composer phpunit"
|
25 |
]
|
26 |
},
|
27 |
-
"repositories": [],
|
28 |
"minimum-stability": "dev",
|
29 |
"prefer-stable": true,
|
30 |
"extra": {
|
@@ -34,7 +33,7 @@
|
|
34 |
"link-template": "https://github.com/Automattic/jetpack-logo/compare/v${old}...v${new}"
|
35 |
},
|
36 |
"branch-alias": {
|
37 |
-
"dev-
|
38 |
}
|
39 |
}
|
40 |
}
|
6 |
"require": {},
|
7 |
"require-dev": {
|
8 |
"yoast/phpunit-polyfills": "1.0.3",
|
9 |
+
"automattic/jetpack-changelogger": "^3.1"
|
10 |
},
|
11 |
"autoload": {
|
12 |
"classmap": [
|
24 |
"@composer phpunit"
|
25 |
]
|
26 |
},
|
|
|
27 |
"minimum-stability": "dev",
|
28 |
"prefer-stable": true,
|
29 |
"extra": {
|
33 |
"link-template": "https://github.com/Automattic/jetpack-logo/compare/v${old}...v${new}"
|
34 |
},
|
35 |
"branch-alias": {
|
36 |
+
"dev-trunk": "1.5.x-dev"
|
37 |
}
|
38 |
}
|
39 |
}
|
vendor/composer/InstalledVersions.php
CHANGED
@@ -21,6 +21,8 @@ use Composer\Semver\VersionParser;
|
|
21 |
* See also https://getcomposer.org/doc/07-runtime.md#installed-versions
|
22 |
*
|
23 |
* To require its presence, you can require `composer-runtime-api ^2.0`
|
|
|
|
|
24 |
*/
|
25 |
class InstalledVersions
|
26 |
{
|
21 |
* See also https://getcomposer.org/doc/07-runtime.md#installed-versions
|
22 |
*
|
23 |
* To require its presence, you can require `composer-runtime-api ^2.0`
|
24 |
+
*
|
25 |
+
* @final
|
26 |
*/
|
27 |
class InstalledVersions
|
28 |
{
|
vendor/composer/autoload_classmap.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_classmap.php @generated by Composer
|
4 |
|
5 |
-
$vendorDir = dirname(
|
6 |
$baseDir = dirname($vendorDir);
|
7 |
|
8 |
return array(
|
2 |
|
3 |
// autoload_classmap.php @generated by Composer
|
4 |
|
5 |
+
$vendorDir = dirname(__DIR__);
|
6 |
$baseDir = dirname($vendorDir);
|
7 |
|
8 |
return array(
|
vendor/composer/autoload_namespaces.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_namespaces.php @generated by Composer
|
4 |
|
5 |
-
$vendorDir = dirname(
|
6 |
$baseDir = dirname($vendorDir);
|
7 |
|
8 |
return array(
|
2 |
|
3 |
// autoload_namespaces.php @generated by Composer
|
4 |
|
5 |
+
$vendorDir = dirname(__DIR__);
|
6 |
$baseDir = dirname($vendorDir);
|
7 |
|
8 |
return array(
|
vendor/composer/autoload_psr4.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_psr4.php @generated by Composer
|
4 |
|
5 |
-
$vendorDir = dirname(
|
6 |
$baseDir = dirname($vendorDir);
|
7 |
|
8 |
return array(
|
2 |
|
3 |
// autoload_psr4.php @generated by Composer
|
4 |
|
5 |
+
$vendorDir = dirname(__DIR__);
|
6 |
$baseDir = dirname($vendorDir);
|
7 |
|
8 |
return array(
|
vendor/composer/autoload_real.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
-
class ComposerAutoloaderInit9559eef123208b7d1b9c15b978567267_vaultpressⓥ
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
@@ -22,21 +22,12 @@ class ComposerAutoloaderInit9559eef123208b7d1b9c15b978567267_vaultpressⓥ2_2_1
|
|
22 |
return self::$loader;
|
23 |
}
|
24 |
|
25 |
-
spl_autoload_register(array('ComposerAutoloaderInit9559eef123208b7d1b9c15b978567267_vaultpressⓥ
|
26 |
-
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(
|
27 |
-
spl_autoload_unregister(array('ComposerAutoloaderInit9559eef123208b7d1b9c15b978567267_vaultpressⓥ
|
28 |
|
29 |
-
|
30 |
-
|
31 |
-
require __DIR__ . '/autoload_static.php';
|
32 |
-
|
33 |
-
call_user_func(\Composer\Autoload\ComposerStaticInit9559eef123208b7d1b9c15b978567267_vaultpressⓥ2_2_1::getInitializer($loader));
|
34 |
-
} else {
|
35 |
-
$classMap = require __DIR__ . '/autoload_classmap.php';
|
36 |
-
if ($classMap) {
|
37 |
-
$loader->addClassMap($classMap);
|
38 |
-
}
|
39 |
-
}
|
40 |
|
41 |
$loader->setClassMapAuthoritative(true);
|
42 |
$loader->register(true);
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
+
class ComposerAutoloaderInit9559eef123208b7d1b9c15b978567267_vaultpressⓥ2_2_2
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
22 |
return self::$loader;
|
23 |
}
|
24 |
|
25 |
+
spl_autoload_register(array('ComposerAutoloaderInit9559eef123208b7d1b9c15b978567267_vaultpressⓥ2_2_2', 'loadClassLoader'), true, true);
|
26 |
+
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
|
27 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit9559eef123208b7d1b9c15b978567267_vaultpressⓥ2_2_2', 'loadClassLoader'));
|
28 |
|
29 |
+
require __DIR__ . '/autoload_static.php';
|
30 |
+
call_user_func(\Composer\Autoload\ComposerStaticInit9559eef123208b7d1b9c15b978567267_vaultpressⓥ2_2_2::getInitializer($loader));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
|
32 |
$loader->setClassMapAuthoritative(true);
|
33 |
$loader->register(true);
|
vendor/composer/autoload_static.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
-
class ComposerStaticInit9559eef123208b7d1b9c15b978567267_vaultpressⓥ
|
8 |
{
|
9 |
public static $prefixLengthsPsr4 = array (
|
10 |
'A' =>
|
@@ -33,9 +33,9 @@ class ComposerStaticInit9559eef123208b7d1b9c15b978567267_vaultpressⓥ2_2_1
|
|
33 |
public static function getInitializer(ClassLoader $loader)
|
34 |
{
|
35 |
return \Closure::bind(function () use ($loader) {
|
36 |
-
$loader->prefixLengthsPsr4 = ComposerStaticInit9559eef123208b7d1b9c15b978567267_vaultpressⓥ
|
37 |
-
$loader->prefixDirsPsr4 = ComposerStaticInit9559eef123208b7d1b9c15b978567267_vaultpressⓥ
|
38 |
-
$loader->classMap = ComposerStaticInit9559eef123208b7d1b9c15b978567267_vaultpressⓥ
|
39 |
|
40 |
}, null, ClassLoader::class);
|
41 |
}
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
+
class ComposerStaticInit9559eef123208b7d1b9c15b978567267_vaultpressⓥ2_2_2
|
8 |
{
|
9 |
public static $prefixLengthsPsr4 = array (
|
10 |
'A' =>
|
33 |
public static function getInitializer(ClassLoader $loader)
|
34 |
{
|
35 |
return \Closure::bind(function () use ($loader) {
|
36 |
+
$loader->prefixLengthsPsr4 = ComposerStaticInit9559eef123208b7d1b9c15b978567267_vaultpressⓥ2_2_2::$prefixLengthsPsr4;
|
37 |
+
$loader->prefixDirsPsr4 = ComposerStaticInit9559eef123208b7d1b9c15b978567267_vaultpressⓥ2_2_2::$prefixDirsPsr4;
|
38 |
+
$loader->classMap = ComposerStaticInit9559eef123208b7d1b9c15b978567267_vaultpressⓥ2_2_2::$classMap;
|
39 |
|
40 |
}, null, ClassLoader::class);
|
41 |
}
|
vendor/composer/installed.json
CHANGED
@@ -2,27 +2,27 @@
|
|
2 |
"packages": [
|
3 |
{
|
4 |
"name": "automattic/jetpack-autoloader",
|
5 |
-
"version": "v2.
|
6 |
-
"version_normalized": "2.
|
7 |
"source": {
|
8 |
"type": "git",
|
9 |
"url": "https://github.com/Automattic/jetpack-autoloader.git",
|
10 |
-
"reference": "
|
11 |
},
|
12 |
"dist": {
|
13 |
"type": "zip",
|
14 |
-
"url": "https://api.github.com/repos/Automattic/jetpack-autoloader/zipball/
|
15 |
-
"reference": "
|
16 |
"shasum": ""
|
17 |
},
|
18 |
"require": {
|
19 |
"composer-plugin-api": "^1.1 || ^2.0"
|
20 |
},
|
21 |
"require-dev": {
|
22 |
-
"automattic/jetpack-changelogger": "^3.
|
23 |
"yoast/phpunit-polyfills": "1.0.3"
|
24 |
},
|
25 |
-
"time": "2022-
|
26 |
"type": "composer-plugin",
|
27 |
"extra": {
|
28 |
"autotagger": true,
|
@@ -32,17 +32,17 @@
|
|
32 |
"link-template": "https://github.com/Automattic/jetpack-autoloader/compare/v${old}...v${new}"
|
33 |
},
|
34 |
"branch-alias": {
|
35 |
-
"dev-
|
36 |
}
|
37 |
},
|
38 |
"installation-source": "dist",
|
39 |
"autoload": {
|
40 |
-
"classmap": [
|
41 |
-
"src/AutoloadGenerator.php"
|
42 |
-
],
|
43 |
"psr-4": {
|
44 |
"Automattic\\Jetpack\\Autoloader\\": "src"
|
45 |
-
}
|
|
|
|
|
|
|
46 |
},
|
47 |
"notification-url": "https://packagist.org/downloads/",
|
48 |
"license": [
|
@@ -50,30 +50,30 @@
|
|
50 |
],
|
51 |
"description": "Creates a custom autoloader for a plugin or theme.",
|
52 |
"support": {
|
53 |
-
"source": "https://github.com/Automattic/jetpack-autoloader/tree/v2.
|
54 |
},
|
55 |
"install-path": "../automattic/jetpack-autoloader"
|
56 |
},
|
57 |
{
|
58 |
"name": "automattic/jetpack-logo",
|
59 |
-
"version": "v1.5.
|
60 |
-
"version_normalized": "1.5.
|
61 |
"source": {
|
62 |
"type": "git",
|
63 |
"url": "https://github.com/Automattic/jetpack-logo.git",
|
64 |
-
"reference": "
|
65 |
},
|
66 |
"dist": {
|
67 |
"type": "zip",
|
68 |
-
"url": "https://api.github.com/repos/Automattic/jetpack-logo/zipball/
|
69 |
-
"reference": "
|
70 |
"shasum": ""
|
71 |
},
|
72 |
"require-dev": {
|
73 |
-
"automattic/jetpack-changelogger": "^3.
|
74 |
"yoast/phpunit-polyfills": "1.0.3"
|
75 |
},
|
76 |
-
"time": "2022-
|
77 |
"type": "jetpack-library",
|
78 |
"extra": {
|
79 |
"autotagger": true,
|
@@ -82,7 +82,7 @@
|
|
82 |
"link-template": "https://github.com/Automattic/jetpack-logo/compare/v${old}...v${new}"
|
83 |
},
|
84 |
"branch-alias": {
|
85 |
-
"dev-
|
86 |
}
|
87 |
},
|
88 |
"installation-source": "dist",
|
@@ -97,7 +97,7 @@
|
|
97 |
],
|
98 |
"description": "A logo for Jetpack",
|
99 |
"support": {
|
100 |
-
"source": "https://github.com/Automattic/jetpack-logo/tree/v1.5.
|
101 |
},
|
102 |
"install-path": "../automattic/jetpack-logo"
|
103 |
}
|
2 |
"packages": [
|
3 |
{
|
4 |
"name": "automattic/jetpack-autoloader",
|
5 |
+
"version": "v2.11.6",
|
6 |
+
"version_normalized": "2.11.6.0",
|
7 |
"source": {
|
8 |
"type": "git",
|
9 |
"url": "https://github.com/Automattic/jetpack-autoloader.git",
|
10 |
+
"reference": "a22f41ff845b8bd4591a933b282270f57dd5bc1d"
|
11 |
},
|
12 |
"dist": {
|
13 |
"type": "zip",
|
14 |
+
"url": "https://api.github.com/repos/Automattic/jetpack-autoloader/zipball/a22f41ff845b8bd4591a933b282270f57dd5bc1d",
|
15 |
+
"reference": "a22f41ff845b8bd4591a933b282270f57dd5bc1d",
|
16 |
"shasum": ""
|
17 |
},
|
18 |
"require": {
|
19 |
"composer-plugin-api": "^1.1 || ^2.0"
|
20 |
},
|
21 |
"require-dev": {
|
22 |
+
"automattic/jetpack-changelogger": "^3.1",
|
23 |
"yoast/phpunit-polyfills": "1.0.3"
|
24 |
},
|
25 |
+
"time": "2022-06-21T07:32:07+00:00",
|
26 |
"type": "composer-plugin",
|
27 |
"extra": {
|
28 |
"autotagger": true,
|
32 |
"link-template": "https://github.com/Automattic/jetpack-autoloader/compare/v${old}...v${new}"
|
33 |
},
|
34 |
"branch-alias": {
|
35 |
+
"dev-trunk": "2.11.x-dev"
|
36 |
}
|
37 |
},
|
38 |
"installation-source": "dist",
|
39 |
"autoload": {
|
|
|
|
|
|
|
40 |
"psr-4": {
|
41 |
"Automattic\\Jetpack\\Autoloader\\": "src"
|
42 |
+
},
|
43 |
+
"classmap": [
|
44 |
+
"src/AutoloadGenerator.php"
|
45 |
+
]
|
46 |
},
|
47 |
"notification-url": "https://packagist.org/downloads/",
|
48 |
"license": [
|
50 |
],
|
51 |
"description": "Creates a custom autoloader for a plugin or theme.",
|
52 |
"support": {
|
53 |
+
"source": "https://github.com/Automattic/jetpack-autoloader/tree/v2.11.6"
|
54 |
},
|
55 |
"install-path": "../automattic/jetpack-autoloader"
|
56 |
},
|
57 |
{
|
58 |
"name": "automattic/jetpack-logo",
|
59 |
+
"version": "v1.5.16",
|
60 |
+
"version_normalized": "1.5.16.0",
|
61 |
"source": {
|
62 |
"type": "git",
|
63 |
"url": "https://github.com/Automattic/jetpack-logo.git",
|
64 |
+
"reference": "b262f5d88e372ccb0d2df169ab5046033293c81e"
|
65 |
},
|
66 |
"dist": {
|
67 |
"type": "zip",
|
68 |
+
"url": "https://api.github.com/repos/Automattic/jetpack-logo/zipball/b262f5d88e372ccb0d2df169ab5046033293c81e",
|
69 |
+
"reference": "b262f5d88e372ccb0d2df169ab5046033293c81e",
|
70 |
"shasum": ""
|
71 |
},
|
72 |
"require-dev": {
|
73 |
+
"automattic/jetpack-changelogger": "^3.1",
|
74 |
"yoast/phpunit-polyfills": "1.0.3"
|
75 |
},
|
76 |
+
"time": "2022-06-21T15:37:56+00:00",
|
77 |
"type": "jetpack-library",
|
78 |
"extra": {
|
79 |
"autotagger": true,
|
82 |
"link-template": "https://github.com/Automattic/jetpack-logo/compare/v${old}...v${new}"
|
83 |
},
|
84 |
"branch-alias": {
|
85 |
+
"dev-trunk": "1.5.x-dev"
|
86 |
}
|
87 |
},
|
88 |
"installation-source": "dist",
|
97 |
],
|
98 |
"description": "A logo for Jetpack",
|
99 |
"support": {
|
100 |
+
"source": "https://github.com/Automattic/jetpack-logo/tree/v1.5.16"
|
101 |
},
|
102 |
"install-path": "../automattic/jetpack-logo"
|
103 |
}
|
vendor/composer/installed.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php return array(
|
2 |
'root' => array(
|
3 |
-
'pretty_version' => 'dev-
|
4 |
-
'version' => 'dev-
|
5 |
'type' => 'wordpress-plugin',
|
6 |
'install_path' => __DIR__ . '/../../',
|
7 |
'aliases' => array(),
|
@@ -11,26 +11,26 @@
|
|
11 |
),
|
12 |
'versions' => array(
|
13 |
'automattic/jetpack-autoloader' => array(
|
14 |
-
'pretty_version' => 'v2.
|
15 |
-
'version' => '2.
|
16 |
'type' => 'composer-plugin',
|
17 |
'install_path' => __DIR__ . '/../automattic/jetpack-autoloader',
|
18 |
'aliases' => array(),
|
19 |
-
'reference' => '
|
20 |
'dev_requirement' => false,
|
21 |
),
|
22 |
'automattic/jetpack-logo' => array(
|
23 |
-
'pretty_version' => 'v1.5.
|
24 |
-
'version' => '1.5.
|
25 |
'type' => 'jetpack-library',
|
26 |
'install_path' => __DIR__ . '/../automattic/jetpack-logo',
|
27 |
'aliases' => array(),
|
28 |
-
'reference' => '
|
29 |
'dev_requirement' => false,
|
30 |
),
|
31 |
'automattic/vaultpress' => array(
|
32 |
-
'pretty_version' => 'dev-
|
33 |
-
'version' => 'dev-
|
34 |
'type' => 'wordpress-plugin',
|
35 |
'install_path' => __DIR__ . '/../../',
|
36 |
'aliases' => array(),
|
1 |
<?php return array(
|
2 |
'root' => array(
|
3 |
+
'pretty_version' => 'dev-trunk',
|
4 |
+
'version' => 'dev-trunk',
|
5 |
'type' => 'wordpress-plugin',
|
6 |
'install_path' => __DIR__ . '/../../',
|
7 |
'aliases' => array(),
|
11 |
),
|
12 |
'versions' => array(
|
13 |
'automattic/jetpack-autoloader' => array(
|
14 |
+
'pretty_version' => 'v2.11.6',
|
15 |
+
'version' => '2.11.6.0',
|
16 |
'type' => 'composer-plugin',
|
17 |
'install_path' => __DIR__ . '/../automattic/jetpack-autoloader',
|
18 |
'aliases' => array(),
|
19 |
+
'reference' => 'a22f41ff845b8bd4591a933b282270f57dd5bc1d',
|
20 |
'dev_requirement' => false,
|
21 |
),
|
22 |
'automattic/jetpack-logo' => array(
|
23 |
+
'pretty_version' => 'v1.5.16',
|
24 |
+
'version' => '1.5.16.0',
|
25 |
'type' => 'jetpack-library',
|
26 |
'install_path' => __DIR__ . '/../automattic/jetpack-logo',
|
27 |
'aliases' => array(),
|
28 |
+
'reference' => 'b262f5d88e372ccb0d2df169ab5046033293c81e',
|
29 |
'dev_requirement' => false,
|
30 |
),
|
31 |
'automattic/vaultpress' => array(
|
32 |
+
'pretty_version' => 'dev-trunk',
|
33 |
+
'version' => 'dev-trunk',
|
34 |
'type' => 'wordpress-plugin',
|
35 |
'install_path' => __DIR__ . '/../../',
|
36 |
'aliases' => array(),
|
vendor/composer/jetpack_autoload_classmap.php
CHANGED
@@ -6,28 +6,28 @@ $vendorDir = dirname(__DIR__);
|
|
6 |
$baseDir = dirname($vendorDir);
|
7 |
|
8 |
return array(
|
9 |
-
'Automattic\\Jetpack\\Autoloader\\
|
10 |
-
'version' => '2.
|
11 |
-
'path' => $vendorDir . '/automattic/jetpack-autoloader/src/
|
12 |
-
),
|
13 |
-
'Automattic\\Jetpack\\Autoloader\\CustomAutoloaderPlugin' => array(
|
14 |
-
'version' => '2.10.12.0',
|
15 |
-
'path' => $vendorDir . '/automattic/jetpack-autoloader/src/CustomAutoloaderPlugin.php'
|
16 |
),
|
17 |
'Automattic\\Jetpack\\Autoloader\\AutoloadGenerator' => array(
|
18 |
-
'version' => '2.
|
19 |
'path' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadGenerator.php'
|
20 |
),
|
|
|
|
|
|
|
|
|
21 |
'Automattic\\Jetpack\\Autoloader\\AutoloadFileWriter' => array(
|
22 |
-
'version' => '2.
|
23 |
'path' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadFileWriter.php'
|
24 |
),
|
25 |
-
'Automattic\\Jetpack\\Autoloader\\
|
26 |
-
'version' => '2.
|
27 |
-
'path' => $vendorDir . '/automattic/jetpack-autoloader/src/
|
28 |
),
|
29 |
'Automattic\\Jetpack\\Assets\\Logo' => array(
|
30 |
-
'version' => '1.5.
|
31 |
'path' => $vendorDir . '/automattic/jetpack-logo/src/class-logo.php'
|
32 |
),
|
33 |
);
|
6 |
$baseDir = dirname($vendorDir);
|
7 |
|
8 |
return array(
|
9 |
+
'Automattic\\Jetpack\\Autoloader\\ManifestGenerator' => array(
|
10 |
+
'version' => '2.11.6.0',
|
11 |
+
'path' => $vendorDir . '/automattic/jetpack-autoloader/src/ManifestGenerator.php'
|
|
|
|
|
|
|
|
|
12 |
),
|
13 |
'Automattic\\Jetpack\\Autoloader\\AutoloadGenerator' => array(
|
14 |
+
'version' => '2.11.6.0',
|
15 |
'path' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadGenerator.php'
|
16 |
),
|
17 |
+
'Automattic\\Jetpack\\Autoloader\\AutoloadProcessor' => array(
|
18 |
+
'version' => '2.11.6.0',
|
19 |
+
'path' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadProcessor.php'
|
20 |
+
),
|
21 |
'Automattic\\Jetpack\\Autoloader\\AutoloadFileWriter' => array(
|
22 |
+
'version' => '2.11.6.0',
|
23 |
'path' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadFileWriter.php'
|
24 |
),
|
25 |
+
'Automattic\\Jetpack\\Autoloader\\CustomAutoloaderPlugin' => array(
|
26 |
+
'version' => '2.11.6.0',
|
27 |
+
'path' => $vendorDir . '/automattic/jetpack-autoloader/src/CustomAutoloaderPlugin.php'
|
28 |
),
|
29 |
'Automattic\\Jetpack\\Assets\\Logo' => array(
|
30 |
+
'version' => '1.5.16.0',
|
31 |
'path' => $vendorDir . '/automattic/jetpack-logo/src/class-logo.php'
|
32 |
),
|
33 |
);
|
vendor/jetpack-autoloader/class-autoloader-handler.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\jp9559eef123208b7d1b9c15b978567267_vaultpressⓥ
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp9559eef123208b7d1b9c15b978567267_vaultpressⓥ2_2_2;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/jetpack-autoloader/class-autoloader-locator.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\jp9559eef123208b7d1b9c15b978567267_vaultpressⓥ
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp9559eef123208b7d1b9c15b978567267_vaultpressⓥ2_2_2;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/jetpack-autoloader/class-autoloader.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\jp9559eef123208b7d1b9c15b978567267_vaultpressⓥ
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp9559eef123208b7d1b9c15b978567267_vaultpressⓥ2_2_2;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/jetpack-autoloader/class-container.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\jp9559eef123208b7d1b9c15b978567267_vaultpressⓥ
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp9559eef123208b7d1b9c15b978567267_vaultpressⓥ2_2_2;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/jetpack-autoloader/class-hook-manager.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\jp9559eef123208b7d1b9c15b978567267_vaultpressⓥ
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp9559eef123208b7d1b9c15b978567267_vaultpressⓥ2_2_2;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/jetpack-autoloader/class-latest-autoloader-guard.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\jp9559eef123208b7d1b9c15b978567267_vaultpressⓥ
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp9559eef123208b7d1b9c15b978567267_vaultpressⓥ2_2_2;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/jetpack-autoloader/class-manifest-reader.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\jp9559eef123208b7d1b9c15b978567267_vaultpressⓥ
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp9559eef123208b7d1b9c15b978567267_vaultpressⓥ2_2_2;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/jetpack-autoloader/class-path-processor.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\jp9559eef123208b7d1b9c15b978567267_vaultpressⓥ
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp9559eef123208b7d1b9c15b978567267_vaultpressⓥ2_2_2;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/jetpack-autoloader/class-php-autoloader.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\jp9559eef123208b7d1b9c15b978567267_vaultpressⓥ
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp9559eef123208b7d1b9c15b978567267_vaultpressⓥ2_2_2;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/jetpack-autoloader/class-plugin-locator.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\jp9559eef123208b7d1b9c15b978567267_vaultpressⓥ
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
@@ -88,6 +88,7 @@ class Plugin_Locator {
|
|
88 |
return array();
|
89 |
}
|
90 |
|
|
|
91 |
$action = isset( $_REQUEST['action'] ) ? wp_unslash( $_REQUEST['action'] ) : false;
|
92 |
if ( ! in_array( $action, $allowed_actions, true ) ) {
|
93 |
return array();
|
@@ -101,6 +102,7 @@ class Plugin_Locator {
|
|
101 |
break;
|
102 |
}
|
103 |
|
|
|
104 |
$plugin_slugs[] = wp_unslash( $_REQUEST['plugin'] );
|
105 |
break;
|
106 |
|
@@ -110,6 +112,7 @@ class Plugin_Locator {
|
|
110 |
break;
|
111 |
}
|
112 |
|
|
|
113 |
$plugin_slugs = wp_unslash( $_REQUEST['checked'] );
|
114 |
break;
|
115 |
}
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp9559eef123208b7d1b9c15b978567267_vaultpressⓥ2_2_2;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
88 |
return array();
|
89 |
}
|
90 |
|
91 |
+
// phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized -- Validated just below.
|
92 |
$action = isset( $_REQUEST['action'] ) ? wp_unslash( $_REQUEST['action'] ) : false;
|
93 |
if ( ! in_array( $action, $allowed_actions, true ) ) {
|
94 |
return array();
|
102 |
break;
|
103 |
}
|
104 |
|
105 |
+
// phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized -- Validated by convert_plugins_to_paths.
|
106 |
$plugin_slugs[] = wp_unslash( $_REQUEST['plugin'] );
|
107 |
break;
|
108 |
|
112 |
break;
|
113 |
}
|
114 |
|
115 |
+
// phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized -- Validated by convert_plugins_to_paths.
|
116 |
$plugin_slugs = wp_unslash( $_REQUEST['checked'] );
|
117 |
break;
|
118 |
}
|
vendor/jetpack-autoloader/class-plugins-handler.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\jp9559eef123208b7d1b9c15b978567267_vaultpressⓥ
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp9559eef123208b7d1b9c15b978567267_vaultpressⓥ2_2_2;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/jetpack-autoloader/class-shutdown-handler.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\jp9559eef123208b7d1b9c15b978567267_vaultpressⓥ
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp9559eef123208b7d1b9c15b978567267_vaultpressⓥ2_2_2;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/jetpack-autoloader/class-version-loader.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\jp9559eef123208b7d1b9c15b978567267_vaultpressⓥ
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp9559eef123208b7d1b9c15b978567267_vaultpressⓥ2_2_2;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
vendor/jetpack-autoloader/class-version-selector.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
-
namespace Automattic\Jetpack\Autoloader\jp9559eef123208b7d1b9c15b978567267_vaultpressⓥ
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
@@ -29,7 +29,7 @@ class Version_Selector {
|
|
29 |
public function is_version_update_required( $selected_version, $compare_version ) {
|
30 |
$use_dev_versions = defined( 'JETPACK_AUTOLOAD_DEV' ) && JETPACK_AUTOLOAD_DEV;
|
31 |
|
32 |
-
if (
|
33 |
return true;
|
34 |
}
|
35 |
|
5 |
* @package automattic/jetpack-autoloader
|
6 |
*/
|
7 |
|
8 |
+
namespace Automattic\Jetpack\Autoloader\jp9559eef123208b7d1b9c15b978567267_vaultpressⓥ2_2_2;
|
9 |
|
10 |
// phpcs:ignore
|
11 |
|
29 |
public function is_version_update_required( $selected_version, $compare_version ) {
|
30 |
$use_dev_versions = defined( 'JETPACK_AUTOLOAD_DEV' ) && JETPACK_AUTOLOAD_DEV;
|
31 |
|
32 |
+
if ( $selected_version === null ) {
|
33 |
return true;
|
34 |
}
|
35 |
|