Plugin Directory

Changeset 3008537


Ignore:
Timestamp:
12/12/2023 08:12:22 AM (2 years ago)
Author:
axeptio
Message:

version 2.3.1 release

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

Legend:

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

    r3006655 r3008537  
    44    Plugin URI: https://www.axeptio.eu/
    55    Description: Axeptio allows you to make your website compliant with GDPR.
    6     Version: 2.3
     6    Version: 2.3.1
    77    Author: axeptio
    88    License: GPLv3
     
    1515use Axeptio\Models\Settings;
    1616
    17 define( 'XPWP_VERSION', '2.3' );
     17define( 'XPWP_VERSION', '2.3.1' );
    1818define( 'XPWP_URL', plugin_dir_url( __FILE__ ) );
    1919define( 'XPWP_PATH', plugin_dir_path( __FILE__ ) );
  • axeptio-sdk-integration/trunk/includes/classes/migrations/class-migration-2.3.0.php

    r3006653 r3008537  
    1515        $table = $wpdb->prefix . Plugins::$table_name;
    1616
    17         $wpdb->query( // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching
    18             sprintf(
    19                 "ALTER TABLE %s ADD COLUMN id INT AUTO_INCREMENT PRIMARY KEY;", // phpcs:ignore WordPress.DB.DirectDatabaseQuery.SchemaChange, WordPress.WP.CapitalPDangit.Misspelled
    20                 $table // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
    21             )
    22         );
    23 
    2417        $sql = "CREATE INDEX idx_plugin ON $table(plugin);"; // phpcs:ignore WordPress.WP.CapitalPDangit.Misspelled
    2518        dbDelta( $sql );
  • axeptio-sdk-integration/trunk/readme.txt

    r3006653 r3008537  
    44Requires at least: 5.0
    55Tested up to: 6.3.1
    6 Stable tag: 2.3
     6Stable tag: 2.3.1
    77Requires PHP: 7.4
    88License: GPLv3
     
    8585== Changelog ==
    8686
     87### 2.3.1 ###
     88
     89- Fix error on primary key
     90
    8791###🌟 2.3 🌟###
    8892
Note: See TracChangeset for help on using the changeset viewer.