Plugin Directory

Changeset 3240692


Ignore:
Timestamp:
02/14/2025 03:13:24 PM (14 months ago)
Author:
NicolasKulka
Message:
  • Tested up to 6.7
  • Remove cookie "WPServeur-php"
Location:
wps-bidouille
Files:
112 added
3 edited

Legend:

Unmodified
Added
Removed
  • wps-bidouille/trunk/classes/removefromcache.php

    r2957671 r3240692  
    148148        global $wp_query;
    149149
    150         self::delete_cookie();
     150        //self::delete_cookie();
    151151
    152152        $list_post_without_cache = get_option( 'list_post_without_cache' );
     
    166166            add_action( 'send_headers', array( __CLASS__, 'add_header_nocache' ), 2 );
    167167            add_action( 'wp_head', array( __CLASS__, 'add_browser_nocache' ) );
    168             add_action( 'wp_head', array( __CLASS__, 'send_cookie' ), 2 );
     168            //add_action( 'wp_head', array( __CLASS__, 'send_cookie' ), 2 );
    169169        }
    170170    }
     
    198198     */
    199199    public static function add_browser_nocache() { ?>
     200        <!-- Disable by WPS Bidouille -->
    200201        <meta http-equiv="cache-control" content="no-cache"/>
    201202        <meta http-equiv="pragma" content="no-cache"/>
  • wps-bidouille/trunk/readme.txt

    r3099121 r3240692  
    44Tags: admin, tools, error, login, transient, wpserveur
    55Requires at least: 4.2
    6 Tested up to: 6.5
    7 Stable tag: 1.32
     6Tested up to: 6.7
     7Stable tag: 1.33
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    132132== Changelog ==
    133133
     134= 1.33 =
     135* Tested up to 6.7
     136* Remove cookie "WPServeur-php"
     137
    134138= 1.32 =
    135139* Add pub WPBoutik
  • wps-bidouille/trunk/wps-bidouille.php

    r3099121 r3240692  
    66Author: WPServeur, NicolasKulka, Benoti, wpformation
    77Author URI: https://wpserveur.net
    8 Version: 1.32
     8Version: 1.33
    99Requires at least: 4.2
    1010Tested up to: 6.5
     
    2121
    2222// Plugin constants
    23 define( 'WPS_BIDOUILLE_VERSION', '1.32' );
     23define( 'WPS_BIDOUILLE_VERSION', '1.33' );
    2424define( 'WPS_BIDOUILLE_FOLDER', 'wps-bidouille' );
    2525define( 'WPS_BIDOUILLE_BASENAME', plugin_basename( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.