Plugin Directory

Changeset 3342196


Ignore:
Timestamp:
08/10/2025 09:04:10 AM (7 months ago)
Author:
wp24dotorg
Message:

Version 1.11.3

Location:
wp24-domain-check/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • wp24-domain-check/trunk/assets/inc/class-domaincheck.php

    r3237418 r3342196  
    212212                $row = $wpdb->get_row( "SELECT host, status_free FROM {$wpdb->prefix}wp24_whois_servers WHERE tld = '" . $tld . "'" );
    213213                if ( null !== $row ) {
    214                     $whois_result = self::whois( $domain, $tld, $row->host, $row->status_free );
    215                     $json_result = array_merge( $json_result, $whois_result );
    216 
     214                    if ( 'rdap' == substr( $row->host, 0, 4 ) ) {
     215                        // use rdap (registration data access protocol)
     216                        $rdap_result = self::rdap( $domain, $tld, $row->host );
     217                        $json_result = array_merge( $json_result, $rdap_result );
     218                    }
     219                    else {
     220                        // use whois (port 43)
     221                        $whois_result = self::whois( $domain, $tld, $row->host, $row->status_free );
     222                        $json_result = array_merge( $json_result, $whois_result );
     223                    }
    217224                    return $json_result;
    218225                }
  • wp24-domain-check/trunk/assets/inc/class-whoisservers.php

    r3304399 r3342196  
    309309        'buy' => array('host' => 'whois.afilias-srs.net', 'free' => 'not found'),
    310310        'buzz' => array('host' => 'whois.nic.buzz', 'free' => 'no data found'),
    311         'bw' => array('host' => 'whois.nic.net.bw', 'free' => 'no object found'),
     311        'bw' => array('host' => 'rdap.nic.net.bw', 'free' => 'no object found'),
    312312        'by' => array('host' => 'whois.cctld.by', 'free' => 'object does not exist'),
    313313        'bz' => array('host' => 'whois.afilias-grs.info', 'free' => 'not found'),
  • wp24-domain-check/trunk/includes/class-wp24-domaincheck.php

    r3319354 r3342196  
    347347        if (
    348348            ( function_exists( 'wp_is_block_theme' ) && wp_is_block_theme() ) ||
    349             ( function_exists( '\Breakdance\Themeless\ThemeDisabler\is_theme_disabled' ) && \Breakdance\Themeless\ThemeDisabler\is_theme_disabled() )
     349            ( function_exists( '\Breakdance\Themeless\ThemeDisabler\is_theme_disabled' ) && \Breakdance\Themeless\ThemeDisabler\is_theme_disabled() ) ||
     350            'Breakdance Zero Theme' == wp_get_theme()
    350351        ) {
    351352            wp_enqueue_script( 'jquery' );
  • wp24-domain-check/trunk/readme.txt

    r3319354 r3342196  
    55Requires at least: 5.0
    66Tested up to: 6.8
    7 Stable tag: 1.11.2
     7Stable tag: 1.11.3
    88Requires PHP: 7.0.0
    99License: GPLv2
     
    5353== Changelog ==
    5454
     55= 1.11.3 =
     56* RDAP in custom whois servers
     57* Breakdance zero theme fix
     58
    5559= 1.11.2 =
    5660* Breakdance builder fix
  • wp24-domain-check/trunk/wp24-domain-check.php

    r3319354 r3342196  
    44 * Plugin URI: https://wp24.org/plugins/domain-check
    55 * Description: Check (whois) domain names for availability. Easy integration via shortcode or widget.
    6  * Version: 1.11.2
     6 * Version: 1.11.3
    77 * Author: WP24
    88 * Author URI: https://wp24.org
     
    1818
    1919if ( ! defined( 'WP24_DOMAIN_CHECK_VERSION' ) )
    20     define( 'WP24_DOMAIN_CHECK_VERSION', '1.11.2' );
     20    define( 'WP24_DOMAIN_CHECK_VERSION', '1.11.3' );
    2121
    2222if ( ! defined( 'WP24_DOMAIN_CHECK_DATABASE_VERSION' ) )
Note: See TracChangeset for help on using the changeset viewer.