Plugin Directory

Changeset 3158645


Ignore:
Timestamp:
09/27/2024 09:47:06 AM (18 months ago)
Author:
axeptio
Message:

version 2.5.1 release

Location:
axeptio-sdk-integration
Files:
1486 added
3 edited

Legend:

Unmodified
Added
Removed
  • axeptio-sdk-integration/trunk/axeptio-wordpress-plugin.php

    r3152637 r3158645  
    44    Plugin URI: https://www.axeptio.eu/
    55    Description: Axeptio allows you to make your website compliant with GDPR.
    6     Version: 2.5
     6    Version: 2.5.1
    77    Author: axeptio
    88    License: GPLv3
     
    1414use Axeptio\Plugin\Models\Settings;
    1515
    16 define( 'XPWP_VERSION', '2.5' );
     16define( 'XPWP_VERSION', '2.5.1' );
    1717define( 'XPWP_URL', plugin_dir_url( __FILE__ ) );
    1818define( 'XPWP_PATH', plugin_dir_path( __FILE__ ) );
  • axeptio-sdk-integration/trunk/includes/classes/models/class-recommended-plugin-settings.php

    r3108716 r3158645  
    3535    public static function find( string $plugin ) {
    3636        $result = self::all();
    37         return isset( $result[ $plugin ] ) ? $result[ $plugin ] : false;
     37        return $result[$plugin] ?? false;
    3838    }
    3939
     
    7676        $processed_plugin_datas = self::process_plugin_items( json_decode( $plugin_datas['body'], true ) );
    7777
    78         set_transient( 'cached_plugin_datas', $processed_plugin_datas, 1 * DAY_IN_SECONDS );
     78        set_transient( self::TRANSIENT_KEY, $processed_plugin_datas, 1 * DAY_IN_SECONDS );
    7979
    8080        return $processed_plugin_datas;
  • axeptio-sdk-integration/trunk/readme.txt

    r3152637 r3158645  
    44Requires at least: 5.0
    55Tested up to: 6.5.5
    6 Stable tag: 2.5
     6Stable tag: 2.5.1
    77Requires PHP: 7.4
    88License: GPLv3
     
    8989Voici un changelog fun pour la version 2.5 du plugin Axeptio, annonçant la désactivation temporaire de l'outil de log d'erreur :
    9090
     91### 🐞 2.5.1 🐞 ###
     92
     93Fix cache data for the plugin recommended settings
     94
     95Hotfix for undefined variable
     96
    9197### ⚡️ 2.5 ⚡️ ###
    9298
Note: See TracChangeset for help on using the changeset viewer.