Changes between Initial Version and Version 1 of Ticket #39799
- Timestamp:
- 02/06/2017 05:17:35 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #39799
- Property Focuses multisite added
- Property Keywords reporter-feedback added
-
Ticket #39799 – Description
initial v1 1 1 The cause is in wp-includes/ms-functions.php, line 464: 2 if ( ! in_array( $emaildomain, $limited_email_domains ) ) { 3 $errors->add('user_email', __('Sorry, that email address is not allowed!')); 4 } 2 3 {{{ 4 if ( ! in_array( $emaildomain, $limited_email_domains ) ) { 5 $errors->add('user_email', __('Sorry, that email address is not allowed!')); 6 } 7 }}} 8 5 9 6 10 it has to be: 7 11 8 '''if (in_array(''' $emaildomain, $limited_email_domains ) ) { 9 $errors->add('user_email', __('Sorry, that email address is not allowed!')); 10 } 12 13 {{{ 14 if (in_array( $emaildomain, $limited_email_domains ) ) { 15 $errors->add('user_email', __('Sorry, that email address is not allowed!')); 16 } 17 }}} 18 11 19 without ! before "in_array"!
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)