Plugin Directory

Changeset 2685504


Ignore:
Timestamp:
02/27/2022 04:58:50 AM (4 years ago)
Author:
speedien
Message:

v1.1.1

Location:
speedien
Files:
4 deleted
3 edited
6 copied

Legend:

Unmodified
Added
Removed
  • speedien/tags/1.1.1/readme.txt

    r2664756 r2685504  
    33Tags: pagespeed, cache, webperf, core web vitals, vitals
    44Requires at least: 4.6
    5 Tested up to: 5.8
     5Tested up to: 5.9
    66Requires PHP: 5.6
    7 Stable tag: 1.1.0
     7Stable tag: 1.1.1
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    140140== Changelog ==
    141141
     142= 1.1.1 - 25 Jan, 2022 =
     143- Bugfix for Elementor
     144
    142145= 1.1.0 - 25 Jan, 2022 =
    143146- Major redesign to replace existing cache-preload model with real-time optimizations.
  • speedien/tags/1.1.1/speedien.php

    r2664756 r2685504  
    77 * Text Domain:     speedien
    88 * Domain Path:     /
    9  * Version:         1.1.0
     9 * Version:         1.1.1
    1010 */
    1111
  • speedien/tags/1.1.1/speedien_cache.php

    r2664756 r2685504  
    2323    }
    2424
     25    if ( is_user_logged_in() ) {
     26        $bypass_cache = 1;
     27    }
     28
    2529    if (!isset($_SERVER['REQUEST_METHOD']) || !in_array($_SERVER['REQUEST_METHOD'], ['HEAD', 'GET'])) {
    2630        $bypass_cache = 1;
     
    3539        if(!empty($_COOKIE['wordpress_logged_in_1']))
    3640        {
    37             if($_COOKIE['wordpress_logged_in_1'] !== 'speedien')
    38             {
    39                 $bypass_cache = 1;
    40             }
     41            $bypass_cache = 1;
    4142        }
    4243        $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  
    33Tags: pagespeed, cache, webperf, core web vitals, vitals
    44Requires at least: 4.6
    5 Tested up to: 5.8
     5Tested up to: 5.9
    66Requires PHP: 5.6
    7 Stable tag: 1.1.0
     7Stable tag: 1.1.1
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    140140== Changelog ==
    141141
     142= 1.1.1 - 25 Jan, 2022 =
     143- Bugfix for Elementor
     144
    142145= 1.1.0 - 25 Jan, 2022 =
    143146- Major redesign to replace existing cache-preload model with real-time optimizations.
  • speedien/trunk/speedien.php

    r2664756 r2685504  
    77 * Text Domain:     speedien
    88 * Domain Path:     /
    9  * Version:         1.1.0
     9 * Version:         1.1.1
    1010 */
    1111
  • speedien/trunk/speedien_cache.php

    r2664756 r2685504  
    2323    }
    2424
     25    if ( is_user_logged_in() ) {
     26        $bypass_cache = 1;
     27    }
     28
    2529    if (!isset($_SERVER['REQUEST_METHOD']) || !in_array($_SERVER['REQUEST_METHOD'], ['HEAD', 'GET'])) {
    2630        $bypass_cache = 1;
     
    3539        if(!empty($_COOKIE['wordpress_logged_in_1']))
    3640        {
    37             if($_COOKIE['wordpress_logged_in_1'] !== 'speedien')
    38             {
    39                 $bypass_cache = 1;
    40             }
     41            $bypass_cache = 1;
    4142        }
    4243        $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.