Ticket #1786: wp-comments-post.php.2.diff
| File wp-comments-post.php.2.diff, 1.5 KB (added by filosofo, 6 years ago) |
|---|
-
wp-comments-post.php
12 12 exit; 13 13 } elseif ( 'closed' == $status->comment_status ) { 14 14 do_action('comment_closed', $comment_post_ID); 15 die( __('Sorry, comments are closed for this item.') );15 wp_die( __('Sorry, comments are closed for this item.') ); 16 16 } elseif ( 'draft' == $status->post_status ) { 17 17 do_action('comment_on_draft', $comment_post_ID); 18 18 exit; … … 31 31 $comment_author_url = $wpdb->escape($user->user_url); 32 32 else : 33 33 if ( get_option('comment_registration') ) 34 die( __('Sorry, you must be logged in to post a comment.') );34 wp_die( __('Sorry, you must be logged in to post a comment.') ); 35 35 endif; 36 36 37 37 $comment_type = ''; 38 38 39 39 if ( get_settings('require_name_email') && !$user->ID ) { 40 40 if ( 6 > strlen($comment_author_email) || '' == $comment_author ) 41 die( __('Error: please fill the required fields (name, email).') );41 wp_die( __('Error: please fill the required fields (name, email).') ); 42 42 elseif ( !is_email($comment_author_email)) 43 die( __('Error: please enter a valid email address.') );43 wp_die( __('Error: please enter a valid email address.') ); 44 44 } 45 45 46 46 if ( '' == $comment_content ) 47 die( __('Error: please type a comment.') );47 wp_die( __('Error: please type a comment.') ); 48 48 49 49 $commentdata = compact('comment_post_ID', 'comment_author', 'comment_author_email', 'comment_author_url', 'comment_content', 'comment_type', 'user_ID'); 50 50
