Changeset 25438
- Timestamp:
- 09/14/2013 06:35:43 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/ajax-actions.php
r25433 r25438 696 696 check_ajax_referer( $action ); 697 697 698 if ( empty( $post_id ) && ! empty( $_REQUEST['p'] ) ) { 699 $id = absint( $_REQUEST['p'] ); 700 if ( ! empty( $id ) ) 701 $post_id = $id; 702 } 703 704 if ( empty( $post_id ) ) 705 wp_die( -1 ); 706 698 707 $wp_list_table = _get_list_table( 'WP_Post_Comments_List_Table', array( 'screen' => 'edit-comments' ) ); 699 708 700 if ( ! current_user_can( 'edit_post', $post_id ) )709 if ( ! current_user_can( 'edit_post', $post_id ) ) 701 710 wp_die( -1 ); 702 711 … … 841 850 842 851 $comment = get_comment( $comment_id ); 852 if ( empty( $comment->comment_ID ) ) 853 wp_die( -1 ); 843 854 844 855 ob_start(); -
trunk/src/wp-includes/capabilities.php
r25329 r25438 1067 1067 case 'edit_page': 1068 1068 $post = get_post( $args[0] ); 1069 if ( empty( $post ) ) 1070 break; 1069 1071 1070 1072 if ( 'revision' == $post->post_type ) { … … 1171 1173 case 'edit_comment': 1172 1174 $comment = get_comment( $args[0] ); 1175 if ( empty( $comment ) ) 1176 break; 1173 1177 $post = get_post( $comment->comment_post_ID ); 1174 1178 $caps = map_meta_cap( 'edit_post', $user_id, $post->ID ); -
trunk/src/wp-includes/comment.php
r25313 r25438 1506 1506 // First, get all of the original fields 1507 1507 $comment = get_comment($commentarr['comment_ID'], ARRAY_A); 1508 if ( empty( $comment ) ) 1509 return 0; 1508 1510 1509 1511 // Escape data pulled from DB. -
trunk/tests/phpunit/includes/testcase-ajax.php
r25432 r25438 132 132 133 133 if ( '' === $this->_last_response ) { 134 if ( is_scalar( $message ) ) {134 if ( is_scalar( $message ) ) { 135 135 throw new WPAjaxDieStopException( (string) $message ); 136 136 } else { -
trunk/tests/phpunit/tests/ajax/GetComments.php
r25002 r25438 39 39 $post_id = $this->factory->post->create(); 40 40 $this->_no_comment_post = get_post( $post_id ); 41 42 unset( $GLOBALS['post_id'] ); 41 43 } 42 44
Note: See TracChangeset
for help on using the changeset viewer.