updated plugin W3 Total Cache version 2.6.1

This commit is contained in:
2023-12-08 23:23:32 +00:00
committed by Gitium
parent fa428d9da9
commit 33d18af972
82 changed files with 5759 additions and 1701 deletions
wp-content/plugins/w3-total-cache
Cache.phpCacheFlush.phpCacheGroups_Plugin_Admin_View.phpCdnEngine.phpCdnEngine_Mirror_BunnyCdn.phpCdn_AdminActions.phpCdn_BunnyCdn_Api.phpCdn_BunnyCdn_Page.phpCdn_BunnyCdn_Page_View.jsCdn_BunnyCdn_Page_View.phpCdn_BunnyCdn_Page_View_Purge_Urls.phpCdn_BunnyCdn_Popup.phpCdn_BunnyCdn_Popup_View_Configured.phpCdn_BunnyCdn_Popup_View_Deauthorize.phpCdn_BunnyCdn_Popup_View_Deauthorized.phpCdn_BunnyCdn_Popup_View_Intro.phpCdn_BunnyCdn_Popup_View_Pull_Zones.phpCdn_BunnyCdn_Widget.phpCdn_BunnyCdn_Widget_View.cssCdn_BunnyCdn_Widget_View_Authorized.phpCdn_BunnyCdn_Widget_View_Unauthorized.phpCdn_Core.phpCdn_GeneralPage_View.phpCdn_Page.phpCdn_Page_View_Header.phpCdn_Plugin_Admin.phpCdn_StackPath2_Page_View.phpCdn_StackPath2_Popup.phpCdn_Util.phpCdnfsd_BunnyCdn_Engine.phpCdnfsd_BunnyCdn_Page.phpCdnfsd_BunnyCdn_Page_View.jsCdnfsd_BunnyCdn_Page_View.phpCdnfsd_BunnyCdn_Popup.phpCdnfsd_BunnyCdn_Popup_View_Configured.phpCdnfsd_BunnyCdn_Popup_View_Deauthorize.phpCdnfsd_BunnyCdn_Popup_View_Deauthorized.phpCdnfsd_BunnyCdn_Popup_View_Intro.phpCdnfsd_BunnyCdn_Popup_View_Pull_Zones.phpCdnfsd_Core.phpCdnfsd_GeneralPage_View.phpCdnfsd_Page_View_Header.phpCdnfsd_Plugin_Admin.phpCdnfsd_StackPath2_Popup.phpCdnfsd_StackPath_Engine.phpConfigState.phpExtension_CloudFlare_Api.phpExtension_CloudFlare_Page.phpExtension_CloudFlare_Page_View.phpExtensions_Util.phpFeatureShowcase_Plugin_Admin.phpFeatureShowcase_Plugin_Admin_View.phpGeneric_AdminActions_Default.phpGeneric_AdminActions_Flush.phpGeneric_Plugin.phpGeneric_Plugin_Admin.phpModuleStatus.phpPageSpeed_Widget.phpUserExperience_DeferScripts_Extension.phpUserExperience_GeneralPage_View.phpUserExperience_Plugin_Admin.phpUserExperience_Preload_Requests_Extension.phpUserExperience_Preload_Requests_Page_View.phpUtil_Ui.php
inc
lib
Azure
MicrosoftAzureStorage
Common
Minify
Minify
OAuth
pub
readme.txt
vendor
w3-total-cache-api.phpw3-total-cache.php

@ -132,17 +132,19 @@ class Minify_Cache_File {
*
* @param string $id cache id (e.g. a filename)
*
* @return string
* @return string|false
*/
public function fetch($id)
{
$path = $this->_path . '/' . $id;
$data = @file_get_contents($path . '_meta');
if ($data) {
if ( ! empty( $data ) ) {
$data = @unserialize($data);
if (!is_array($data))
$data = array();
} else {
$data = array();
}
if (is_readable($path)) {