Changeset 36387
- Timestamp:
- 01/23/2016 10:15:19 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-comments-list-table.php
r36339 r36387 34 34 * @see WP_List_Table::__construct() for more information on default arguments. 35 35 * 36 * @global int $post_id36 * @global int|bool $post_id 37 37 * 38 38 * @param array $args An associative array of arguments. … … 41 41 global $post_id; 42 42 43 $post_id = isset( $_REQUEST['p'] ) ? absint( $_REQUEST['p'] ) : 0;43 $post_id = isset( $_REQUEST['p'] ) ? absint( $_REQUEST['p'] ) : false; 44 44 45 45 if ( get_option( 'show_avatars' ) ) { … … 70 70 /** 71 71 * 72 * @global int 72 * @global int|bool $post_id 73 73 * @global string $comment_status 74 74 * @global string $search … … 193 193 /** 194 194 * 195 * @global int $post_id195 * @global int|bool $post_id 196 196 * @global string $comment_status 197 197 * @global string $comment_type … … 384 384 /** 385 385 * 386 * @global int $post_id386 * @global int|bool $post_id 387 387 * 388 388 * @return array
Note: See TracChangeset
for help on using the changeset viewer.