Changeset 2685504
- Timestamp:
- 02/27/2022 04:58:50 AM (4 years ago)
- Location:
- speedien
- Files:
-
- 4 deleted
- 3 edited
- 6 copied
-
tags/1.1.1 (copied) (copied from speedien/trunk)
-
tags/1.1.1/advanced-cache.php (deleted)
-
tags/1.1.1/readme.txt (copied) (copied from speedien/trunk/readme.txt) (2 diffs)
-
tags/1.1.1/speedien.php (copied) (copied from speedien/trunk/speedien.php) (1 diff)
-
tags/1.1.1/speedien_admin_bar.php (deleted)
-
tags/1.1.1/speedien_admin_notice.php (deleted)
-
tags/1.1.1/speedien_cache.php (copied) (copied from speedien/trunk/speedien_cache.php) (2 diffs)
-
tags/1.1.1/speedien_config.php (copied) (copied from speedien/trunk/speedien_config.php)
-
tags/1.1.1/speedien_purge_hooks.php (deleted)
-
tags/1.1.1/speedien_ui.php (copied) (copied from speedien/trunk/speedien_ui.php)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/speedien.php (modified) (1 diff)
-
trunk/speedien_cache.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
speedien/tags/1.1.1/readme.txt
r2664756 r2685504 3 3 Tags: pagespeed, cache, webperf, core web vitals, vitals 4 4 Requires at least: 4.6 5 Tested up to: 5. 85 Tested up to: 5.9 6 6 Requires PHP: 5.6 7 Stable tag: 1.1. 07 Stable tag: 1.1.1 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 140 140 == Changelog == 141 141 142 = 1.1.1 - 25 Jan, 2022 = 143 - Bugfix for Elementor 144 142 145 = 1.1.0 - 25 Jan, 2022 = 143 146 - Major redesign to replace existing cache-preload model with real-time optimizations. -
speedien/tags/1.1.1/speedien.php
r2664756 r2685504 7 7 * Text Domain: speedien 8 8 * Domain Path: / 9 * Version: 1.1. 09 * Version: 1.1.1 10 10 */ 11 11 -
speedien/tags/1.1.1/speedien_cache.php
r2664756 r2685504 23 23 } 24 24 25 if ( is_user_logged_in() ) { 26 $bypass_cache = 1; 27 } 28 25 29 if (!isset($_SERVER['REQUEST_METHOD']) || !in_array($_SERVER['REQUEST_METHOD'], ['HEAD', 'GET'])) { 26 30 $bypass_cache = 1; … … 35 39 if(!empty($_COOKIE['wordpress_logged_in_1'])) 36 40 { 37 if($_COOKIE['wordpress_logged_in_1'] !== 'speedien') 38 { 39 $bypass_cache = 1; 40 } 41 $bypass_cache = 1; 41 42 } 42 43 $cookielist = '/(wordpress_[a-f0-9]+|comment_author|wp-postpass|wordpress_no_cache|woocommerce_cart_hash|woocommerce_items_in_cart|woocommerce_recently_viewed|edd_items_in_cart)/'; -
speedien/trunk/readme.txt
r2664756 r2685504 3 3 Tags: pagespeed, cache, webperf, core web vitals, vitals 4 4 Requires at least: 4.6 5 Tested up to: 5. 85 Tested up to: 5.9 6 6 Requires PHP: 5.6 7 Stable tag: 1.1. 07 Stable tag: 1.1.1 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 140 140 == Changelog == 141 141 142 = 1.1.1 - 25 Jan, 2022 = 143 - Bugfix for Elementor 144 142 145 = 1.1.0 - 25 Jan, 2022 = 143 146 - Major redesign to replace existing cache-preload model with real-time optimizations. -
speedien/trunk/speedien.php
r2664756 r2685504 7 7 * Text Domain: speedien 8 8 * Domain Path: / 9 * Version: 1.1. 09 * Version: 1.1.1 10 10 */ 11 11 -
speedien/trunk/speedien_cache.php
r2664756 r2685504 23 23 } 24 24 25 if ( is_user_logged_in() ) { 26 $bypass_cache = 1; 27 } 28 25 29 if (!isset($_SERVER['REQUEST_METHOD']) || !in_array($_SERVER['REQUEST_METHOD'], ['HEAD', 'GET'])) { 26 30 $bypass_cache = 1; … … 35 39 if(!empty($_COOKIE['wordpress_logged_in_1'])) 36 40 { 37 if($_COOKIE['wordpress_logged_in_1'] !== 'speedien') 38 { 39 $bypass_cache = 1; 40 } 41 $bypass_cache = 1; 41 42 } 42 43 $cookielist = '/(wordpress_[a-f0-9]+|comment_author|wp-postpass|wordpress_no_cache|woocommerce_cart_hash|woocommerce_items_in_cart|woocommerce_recently_viewed|edd_items_in_cart)/';
Note: See TracChangeset
for help on using the changeset viewer.