Changeset 3211472
- Timestamp:
- 12/21/2024 10:47:03 AM (15 months ago)
- Location:
- wp24-domain-check/trunk
- Files:
-
- 5 edited
-
assets/inc/class-whoisservers.php (modified) (5 diffs)
-
includes/class-wp24-domaincheck.php (modified) (2 diffs)
-
includes/class-wp24-settings.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
wp24-domain-check.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp24-domain-check/trunk/assets/inc/class-whoisservers.php
r3179873 r3211472 38 38 'agakhan' => array('host' => 'whois.afilias-srs.net', 'free' => 'not found'), 39 39 'agency' => array('host' => 'whois.donuts.co', 'free' => 'domain not found.'), 40 'ai' => array('host' => 'whois.nic.ai', ' free' => 'no object found'),40 'ai' => array('host' => 'whois.nic.ai', 'rdap' => 'rdap.nic.ai', 'free' => 'no object found'), 41 41 'aigo' => array('host' => 'whois.afilias-srs.net', 'free' => 'not found'), 42 42 'airbus' => array('host' => 'whois.nic.airbus', 'free' => 'no match'), … … 152 152 'bosch' => array('host' => 'whois.nic.bosch', 'free' => 'no match'), 153 153 'bostik' => array('host' => 'whois.nic.bostik', 'free' => 'not found'), 154 'bot' => array('host' => 'whois.nic.bot', 'free' => 'this domain name has not been registered'), 154 155 'boutique' => array('host' => 'whois.donuts.co', 'free' => 'domain not found.'), 155 156 'boston' => array('host' => 'whois.nic.boston', 'free' => 'this domain name has not been registered'), … … 429 430 'gr.com' => array('host' => 'whois.verisign-grs.com', 'free' => 'no match for'), 430 431 'hu.com' => array('host' => 'whois.verisign-grs.com', 'free' => 'no match for'), 432 'it.com' => array('host' => 'whois.verisign-grs.com', 'free' => 'no match for'), 431 433 'jpn.com' => array('host' => 'whois.verisign-grs.com', 'free' => 'no match for'), 432 434 'kr.com' => array('host' => 'whois.verisign-grs.com', 'free' => 'no match for'), … … 497 499 'diamonds' => array('host' => 'whois.donuts.co', 'free' => 'domain not found'), 498 500 'diet' => array('host' => 'whois.uniregistry.net', 'free' => 'is available for registration'), 499 'digital' => array('host' => 'whois. donuts.co', 'free' => 'domain not found.'),501 'digital' => array('host' => 'whois.nic.digital', 'free' => 'domain not found.'), 500 502 'direct' => array('host' => 'whois.donuts.co', 'free' => 'domain not found.'), 501 503 'directory' => array('host' => 'whois.donuts.co', 'free' => 'domain not found'), … … 1085 1087 'porn' => array('host' => 'whois.afilias-srs.net', 'free' => 'not found'), 1086 1088 'post' => array('host' => 'whois.dotpostregistry.net', 'free' => 'not found'), 1089 'com.post' => array('host' => 'whois.dotpostregistry.net', 'free' => 'not found'), 1090 'edu.post' => array('host' => 'whois.dotpostregistry.net', 'free' => 'not found'), 1091 'org.post' => array('host' => 'whois.dotpostregistry.net', 'free' => 'not found'), 1087 1092 'pr' => array('host' => 'whois.nic.pr', 'free' => 'not found'), 1088 1093 'pro' => array('host' => 'whois.afilias.net', 'free' => 'not found'), -
wp24-domain-check/trunk/includes/class-wp24-domaincheck.php
r2896144 r3211472 28 28 add_shortcode( 'wp24_domaincheck', array( $this, 'shortcode' ) ); 29 29 add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ) ); 30 add_action( 'init', array( $this, 'load_textdomain' ) ); 30 31 31 32 require_once( dirname( __DIR__ ) . '/assets/inc/class-domaincheck.php' ); … … 146 147 true 147 148 ); 149 } 150 151 /** 152 * Load textdomain. 153 * 154 * @return void 155 */ 156 public function load_textdomain() { 157 // textdomain for translations 158 load_plugin_textdomain( 'wp24-domain-check', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' ); 148 159 } 149 160 -
wp24-domain-check/trunk/includes/class-wp24-settings.php
r3179873 r3211472 1979 1979 echo '<th>' . __( 'TLD', 'wp24-domain-check' ) . '</th>'; 1980 1980 echo '<td>'; 1981 echo '<input type="text" placeholder="com" required pattern="([a-zA-Z0-9-]{2,})(\.[a-zA-Z0-9]{2,})?$" name="tld_search" value="' . $tld_search. '">';1981 echo '<input type="text" placeholder="com" required pattern="([a-zA-Z0-9-]{2,})(\.[a-zA-Z0-9]{2,})?$" name="tld_search" value="' . esc_attr( $tld_search ) . '">'; 1982 1982 echo ' '; 1983 1983 echo '<input type="submit" class="button button-primary" value="' . __( 'Search', 'wp24-domain-check' ) . '">'; … … 1988 1988 if ( ! empty( $tld_search ) ) { 1989 1989 // search results 1990 echo '<p>' . __( 'Results with', 'wp24-domain-check') . ' <strong>' . $tld_search. '</strong>:</p>';1990 echo '<p>' . __( 'Results with', 'wp24-domain-check') . ' <strong>' . esc_attr( $tld_search ) . '</strong>:</p>'; 1991 1991 $matches = ''; 1992 1992 $match_count = 0; -
wp24-domain-check/trunk/readme.txt
r3190318 r3211472 5 5 Requires at least: 5.0 6 6 Tested up to: 6.7 7 Stable tag: 1.10.1 47 Stable tag: 1.10.15 8 8 Requires PHP: 7.0.0 9 9 License: GPLv2 … … 53 53 == Changelog == 54 54 55 = 1.10.15 = 56 * Security fixes 57 * Minor bug fixes 58 55 59 = 1.10.14 = 56 60 * Minor bug fixes -
wp24-domain-check/trunk/wp24-domain-check.php
r3190318 r3211472 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.10.1 46 * Version: 1.10.15 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.10.1 4' );20 define( 'WP24_DOMAIN_CHECK_VERSION', '1.10.15' ); 21 21 22 22 if ( ! defined( 'WP24_DOMAIN_CHECK_DATABASE_VERSION' ) ) 23 23 define( 'WP24_DOMAIN_CHECK_DATABASE_VERSION', '1.3.0' ); 24 25 // textdomain for translations26 load_plugin_textdomain( 'wp24-domain-check', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );27 24 28 25 if ( ! class_exists( 'WP24_Domain_Check' ) )
Note: See TracChangeset
for help on using the changeset viewer.