Changeset 3342196
- Timestamp:
- 08/10/2025 09:04:10 AM (7 months ago)
- Location:
- wp24-domain-check/trunk
- Files:
-
- 5 edited
-
assets/inc/class-domaincheck.php (modified) (1 diff)
-
assets/inc/class-whoisservers.php (modified) (1 diff)
-
includes/class-wp24-domaincheck.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
wp24-domain-check.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp24-domain-check/trunk/assets/inc/class-domaincheck.php
r3237418 r3342196 212 212 $row = $wpdb->get_row( "SELECT host, status_free FROM {$wpdb->prefix}wp24_whois_servers WHERE tld = '" . $tld . "'" ); 213 213 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 } 217 224 return $json_result; 218 225 } -
wp24-domain-check/trunk/assets/inc/class-whoisservers.php
r3304399 r3342196 309 309 'buy' => array('host' => 'whois.afilias-srs.net', 'free' => 'not found'), 310 310 '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'), 312 312 'by' => array('host' => 'whois.cctld.by', 'free' => 'object does not exist'), 313 313 'bz' => array('host' => 'whois.afilias-grs.info', 'free' => 'not found'), -
wp24-domain-check/trunk/includes/class-wp24-domaincheck.php
r3319354 r3342196 347 347 if ( 348 348 ( 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() 350 351 ) { 351 352 wp_enqueue_script( 'jquery' ); -
wp24-domain-check/trunk/readme.txt
r3319354 r3342196 5 5 Requires at least: 5.0 6 6 Tested up to: 6.8 7 Stable tag: 1.11. 27 Stable tag: 1.11.3 8 8 Requires PHP: 7.0.0 9 9 License: GPLv2 … … 53 53 == Changelog == 54 54 55 = 1.11.3 = 56 * RDAP in custom whois servers 57 * Breakdance zero theme fix 58 55 59 = 1.11.2 = 56 60 * Breakdance builder fix -
wp24-domain-check/trunk/wp24-domain-check.php
r3319354 r3342196 4 4 * Plugin URI: https://wp24.org/plugins/domain-check 5 5 * Description: Check (whois) domain names for availability. Easy integration via shortcode or widget. 6 * Version: 1.11. 26 * Version: 1.11.3 7 7 * Author: WP24 8 8 * Author URI: https://wp24.org … … 18 18 19 19 if ( ! defined( 'WP24_DOMAIN_CHECK_VERSION' ) ) 20 define( 'WP24_DOMAIN_CHECK_VERSION', '1.11. 2' );20 define( 'WP24_DOMAIN_CHECK_VERSION', '1.11.3' ); 21 21 22 22 if ( ! defined( 'WP24_DOMAIN_CHECK_DATABASE_VERSION' ) )
Note: See TracChangeset
for help on using the changeset viewer.