Plugin Directory

Changeset 3129882


Ignore:
Timestamp:
08/02/2024 07:50:26 AM (19 months ago)
Author:
cyberorange
Message:

Discord Integrator v2.2.1 release

Location:
miniorange-discord-integration
Files:
80 added
3 edited

Legend:

Unmodified
Added
Removed
  • miniorange-discord-integration/trunk/miniorange_discord_sso_settings.php

    r3065268 r3129882  
    44 * Plugin URI: https://www.miniorange.com
    55 * Description: Allow your users to Log in with Discord using customizable buttons and map their profile attributes with WordPress
    6  * Version: 2.2.0
     6 * Version: 2.2.1
    77 * Author: miniOrange
    88 * License: MIT/Expat
     
    1212 */
    1313
    14 define( 'MO_DISCORD_INTEGRATOR_VERSION', '2.2.0' );
     14define( 'MO_DISCORD_INTEGRATOR_VERSION', '2.2.1' );
    1515define( 'MO_DISCORD_PLUGIN_URL', plugin_dir_url( __FILE__ ) . 'includes/images/icons/' );
    1616define( 'MOSL_DISCORD_PLUGIN_DIR', str_replace( '/', '\\', plugin_dir_path( __FILE__ ) ) );
  • miniorange-discord-integration/trunk/mo-discord-login-functions.php

    r3065268 r3129882  
    305305        if ( strcasecmp( $identifier, 'identifier' ) === 0 ) {
    306306
    307             $count  = $wpdb->get_var( $wpdb->prepare( "SELECT count(ID) FROM %s WHERE identifier not LIKE ''", $wpdb->users ) );//phpcs:ignore WordPress.DB.DirectDatabaseQuery.NoCaching,WordPress.DB.DirectDatabaseQuery.DirectQuery -- Fetching data from a custom table and not repeating the same query hence not required caching.
    308             $result = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM %s WHERE identifier not LIKE ''", $wpdb->users ) );//phpcs:ignore WordPress.DB.DirectDatabaseQuery.NoCaching,WordPress.DB.DirectDatabaseQuery.DirectQuery -- Fetching data from a custom table and not repeating the same query hence not required caching.
     307            $count  = $wpdb->get_var( $wpdb->prepare( "SELECT count(ID) FROM %s WHERE identifier IS NOT NULL AND identifier != ''", $wpdb->users ) );//phpcs:ignore WordPress.DB.DirectDatabaseQuery.NoCaching,WordPress.DB.DirectDatabaseQuery.DirectQuery -- Fetching data from a custom table and not repeating the same query hence not required caching.
     308            $result = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM %s WHERE identifier IS NOT NULL AND identifier != ''", $wpdb->users ) );//phpcs:ignore WordPress.DB.DirectDatabaseQuery.NoCaching,WordPress.DB.DirectDatabaseQuery.DirectQuery -- Fetching data from a custom table and not repeating the same query hence not required caching.
    309309
    310310            for ( $icnt = 0; $icnt < $count; ++$icnt ) {
  • miniorange-discord-integration/trunk/readme.txt

    r3065268 r3129882  
    44Tags: Discord, Login, SSO, Discord Login, Discord Avatar
    55Requires at least: 2.0.2
    6 Tested up to: 6.5
     6Tested up to: 6.6
    77Requires PHP: 7.0
    8 Stable tag: 2.2.0
     8Stable tag: 2.2.1
    99License: MIT/Expat
    1010License URI: https://docs.miniorange.com/mit-license
     
    103103
    104104==Changelog==
     105= 2.2.1 =
     106* Compatible with WP version 6.6
     107
    105108= 2.2.0 =
    106109* UI changes in the dashboard
     
    143146
    144147== Upgrade Notice ==
     148= 2.2.1 =
     149* Compatible with WP version 6.6
     150
    145151= 2.2.0 =
    146152* UI changes in the dashboard
Note: See TracChangeset for help on using the changeset viewer.