diff --git a/wp-admin/admin-footer.php b/wp-admin/admin-footer.php index 0c51d0aacd..5d2bf2ac55 100644 --- a/wp-admin/admin-footer.php +++ b/wp-admin/admin-footer.php @@ -27,7 +27,7 @@ if ( !defined('ABSPATH') )
"> remove_action( 'welcome_panel', 'wp_welcome_panel' ); diff --git a/wp-comments-post.php b/wp-comments-post.php index ab916617b6..859ccb4644 100644 --- a/wp-comments-post.php +++ b/wp-comments-post.php @@ -23,7 +23,7 @@ $post = get_post($comment_post_ID); if ( empty( $post->comment_status ) ) { /** - * Fires when a comment is attempted on a post that does not exist + * Fires when a comment is attempted on a post that does not exist. * * @since unknown * @param int $comment_post_ID Post ID. @@ -39,7 +39,7 @@ $status_obj = get_post_status_object($status); if ( ! comments_open( $comment_post_ID ) ) { /** - * Fires when a comment is attempted on a post that has comments closed + * Fires when a comment is attempted on a post that has comments closed. * * @since unknown * @param int $comment_post_ID Post ID. @@ -48,7 +48,7 @@ if ( ! comments_open( $comment_post_ID ) ) { wp_die( __('Sorry, comments are closed for this item.') ); } elseif ( 'trash' == $status ) { /** - * Fires when a comment is attempted on a trashed post + * Fires when a comment is attempted on a trashed post. * * @since 2.9.0 * @param int $comment_post_ID Post ID. @@ -57,7 +57,7 @@ if ( ! comments_open( $comment_post_ID ) ) { exit; } elseif ( ! $status_obj->public && ! $status_obj->private ) { /** - * Fires when a comment is attempted on a post in draft mode + * Fires when a comment is attempted on a post in draft mode. * * @since unknown * @param int $comment_post_ID Post ID. @@ -66,7 +66,7 @@ if ( ! comments_open( $comment_post_ID ) ) { exit; } elseif ( post_password_required( $comment_post_ID ) ) { /** - * Fires when a comment is attempted on a password-protected post + * Fires when a comment is attempted on a password-protected post. * * @since unknown * @param int $comment_post_ID Post ID. @@ -75,7 +75,7 @@ if ( ! comments_open( $comment_post_ID ) ) { exit; } else { /** - * Fires before a comment is posted + * Fires before a comment is posted. * * @since unknown * @param int $comment_post_ID Post ID. @@ -129,7 +129,7 @@ $comment_id = wp_new_comment( $commentdata ); $comment = get_comment($comment_id); /** - * Perform other actions when comment cookies are set + * Perform other actions when comment cookies are set. * * @since 3.4.0 * @@ -141,7 +141,7 @@ do_action( 'set_comment_cookies', $comment, $user ); $location = empty($_POST['redirect_to']) ? get_comment_link($comment_id) : $_POST['redirect_to'] . '#comment-' . $comment_id; /** - * The location URI to send commenter after posting + * The location URI to send commenter after posting. * * @since unknown * diff --git a/wp-includes/pluggable.php b/wp-includes/pluggable.php index 40a811bd5e..2e82e7bdce 100644 --- a/wp-includes/pluggable.php +++ b/wp-includes/pluggable.php @@ -865,7 +865,7 @@ function wp_redirect($location, $status = 302) { global $is_IIS; /** - * Filter the redirect location + * Filter the redirect location. * * @since 2.1.0 * @@ -875,7 +875,7 @@ function wp_redirect($location, $status = 302) { $location = apply_filters( 'wp_redirect', $location, $status ); /** - * Filter the redirect status code + * Filter the redirect status code. * * @since 2.3.0 * diff --git a/wp-trackback.php b/wp-trackback.php index a9e549c009..464f36844b 100644 --- a/wp-trackback.php +++ b/wp-trackback.php @@ -107,7 +107,7 @@ if ( !empty($tb_url) && !empty($title) ) { $trackback_id = $wpdb->insert_id; /** - * Fires after a trackback is added to a post + * Fires after a trackback is added to a post. * * @since 1.2.0 * @param int $trackback_id Trackback ID.