Changeset 49273 for branches/5.5/src/wp-includes/class-wp-xmlrpc-server.php
- Timestamp:
- 10/22/2020 02:45:47 AM (4 years ago)
- Location:
- branches/5.5
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.5
-
branches/5.5/src/wp-includes/class-wp-xmlrpc-server.php
r48590 r49273 3913 3913 3914 3914 if ( get_option( 'require_name_email' ) ) { 3915 if ( strlen( $comment['comment_author_email'] < 6 )|| '' === $comment['comment_author'] ) {3915 if ( strlen( $comment['comment_author_email'] ) < 6 || '' === $comment['comment_author'] ) { 3916 3916 return new IXR_Error( 403, __( 'Comment author name and email are required.' ) ); 3917 3917 } elseif ( ! is_email( $comment['comment_author_email'] ) ) {
Note: See TracChangeset
for help on using the changeset viewer.