Make WordPress Core


Ignore:
Timestamp:
06/16/2020 09:05:20 PM (4 years ago)
Author:
SergeyBiryukov
Message:

Docs: Consistently include an empty line between @since tag and @see, @link, or @global, per the documentation standards.

See #49572.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/comment.php

    r48052 r48067  
    3737}
    3838
    39 // Prevent actions on a comment associated with a trashed post.
    4039$comment_id = absint( $_GET['c'] );
    4140$comment    = get_comment( $comment_id );
    4241
     42// Prevent actions on a comment associated with a trashed post.
    4343if ( 'trash' === get_post_status( $comment->comment_post_ID ) ) {
    4444    wp_die(
Note: See TracChangeset for help on using the changeset viewer.