Changeset 3000261
- Timestamp:
- 11/22/2023 03:39:11 PM (2 years ago)
- Location:
- a2-optimized-wp/tags/3.0.7.2
- Files:
-
- 3 edited
- 1 copied
-
. (copied) (copied from a2-optimized-wp/trunk)
-
a2-optimized.php (modified) (2 diffs)
-
core/A2_Optimized_CacheEngine.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
a2-optimized-wp/tags/3.0.7.2/a2-optimized.php
r2999241 r3000261 10 10 * Plugin Name: A2 Optimized WP 11 11 * Plugin URI: https://wordpress.org/plugins/a2-optimized/ 12 * Version: 3.0.7. 112 * Version: 3.0.7.2 13 13 * Author: A2 Hosting 14 14 * Author URI: https://www.a2hosting.com/ … … 25 25 26 26 define( 'A2OPT_VERSION', '3.0' ); 27 define( 'A2OPT_FULL_VERSION', '3.0.7. 1' );27 define( 'A2OPT_FULL_VERSION', '3.0.7.2' ); 28 28 define( 'A2OPT_MIN_PHP', '5.6' ); 29 29 define( 'A2OPT_MIN_WP', '5.1' ); -
a2-optimized-wp/tags/3.0.7.2/core/A2_Optimized_CacheEngine.php
r2999241 r3000261 268 268 } 269 269 270 271 270 // if cookie excluded 272 271 if ( ! empty( $_COOKIE ) ) { … … 275 274 $cookies_regex = self::$settings['excluded_cookies']; 276 275 } else { 277 $active_plugins = get_option('active_plugins'); 278 if(in_array('woocommerce/woocommerce.php', $active_plugins)){ 276 if (file_exists(ABSPATH . 'wp-content/plugins/woocommerce/woocommerce.php') || class_exists( 'WooCommerce' )) { 279 277 $cookies_regex = '/^(wp-postpass|wordpress_logged_in|comment_author|woocommerce_cart_hash|woocommerce_items_in_cart|woocommerce_recently_viewed)_/'; 280 278 } else { -
a2-optimized-wp/tags/3.0.7.2/readme.txt
r2999627 r3000261 4 4 Requires at least: 5.1 5 5 Tested up to: 6.4.1 6 Stable tag: 3.0.7. 16 Stable tag: 3.0.7.2 7 7 Requires PHP: 5.6 8 8 License: GPLv3
Note: See TracChangeset
for help on using the changeset viewer.