Changeset 3473196
- Timestamp:
- 03/03/2026 02:19:43 AM (4 weeks ago)
- Location:
- mailboxvalidator-email-validator/trunk
- Files:
-
- 2 edited
-
mailboxvalidator-email-validator.php (modified) (4 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
mailboxvalidator-email-validator/trunk/mailboxvalidator-email-validator.php
r3416881 r3473196 4 4 Plugin URL: https://developer.wordpress.org/plugins/mailboxvalidator-email-validator 5 5 Description: This plugin enables you to block invalid, disposable, free or role-based email from registering for your service. This plugin has been tested successfully to support WooCommerce, JetPack, Contact Form 7, Formidable forms and many more. 6 Version: 1.7. 16 Version: 1.7.2 7 7 Author: MailboxValidator 8 8 Author URI: https://mailboxvalidator.com … … 15 15 16 16 // Defined plugin version. 17 define( 'MBV_PLUGIN_VER', '1.7. 1' );17 define( 'MBV_PLUGIN_VER', '1.7.2' ); 18 18 19 19 // Need to include because some plugin called is_email in front end. … … 988 988 $email_parts = explode( '@', $email ); 989 989 990 if ( $mbv_options['trusted_domains'] !== '') {990 if ( ! empty( $mbv_options['trusted_domains'] ) ) { 991 991 $trusted_domains_array = explode( ';', $mbv_options['trusted_domains'] ); 992 992 if ( ( isset( $email_parts[1] ) ) && ( in_array( $email_parts[1], $trusted_domains_array ) ) ) { … … 998 998 999 999 // First check the domain blacklisted list, if the domain is in the list, straight return false 1000 if ( $mbv_options['blacklisted_domains'] !== '') {1000 if ( ! empty( $mbv_options['blacklisted_domains'] ) ) { 1001 1001 $blacklisted_domains_array = explode( ';', $mbv_options['blacklisted_domains'] ); 1002 1002 -
mailboxvalidator-email-validator/trunk/readme.txt
r3416881 r3473196 95 95 == Changelog == 96 96 97 = 1.7.2 = 98 * Fixed PHP warning for undefined array key. 99 97 100 = 1.7.1 = 98 101 * Tested up to WordPress 6.9.
Note: See TracChangeset
for help on using the changeset viewer.