Changeset 3473192
- Timestamp:
- 03/03/2026 02:15:28 AM (4 weeks ago)
- Location:
- email-validator-for-contact-form-7/trunk
- Files:
-
- 2 edited
-
email-validator-for-contact-form-7.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
email-validator-for-contact-form-7/trunk/email-validator-for-contact-form-7.php
r3416871 r3473192 9 9 Description: Enables Contact Form 7 users to validate their client’s email address before accepting their messages for sending using MailboxValidator. <strong>Before get started, install and activate the Contact Form 7 plugin first.</strong> 10 10 11 Version: 1.8. 111 Version: 1.8.2 12 12 13 13 Author: MailboxValidator … … 926 926 927 927 }*/ 928 if ( $options['trusted_domains'] !== '') {928 if ( ! empty( $options['trusted_domains'] ) ) { 929 929 $trusted_domains_array = explode( ';', $options['trusted_domains'] ); 930 930 if ( ( isset( $email_parts[1] ) ) && ( in_array( $email_parts[1], $trusted_domains_array ) ) ) { … … 935 935 // First check the domain blacklisted list, if the domain is in the list, straight return false 936 936 $is_domain_blacklisted = false; 937 if ( $options['blacklisted_domains'] !== '') {937 if ( ! empty( $options['blacklisted_domains'] ) ) { 938 938 $blacklisted_domains_array = explode( ';', $options['blacklisted_domains'] ); 939 939 -
email-validator-for-contact-form-7/trunk/readme.txt
r3416871 r3473192 67 67 68 68 == Changelog == 69 70 = 1.8.2 = 71 * Fixed PHP warning for undefined array key. 69 72 70 73 = 1.8.1 =
Note: See TracChangeset
for help on using the changeset viewer.