Changeset 38381 for trunk/src/wp-includes/class-wp-comment.php
- Timestamp:
- 08/26/2016 07:08:23 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-comment.php
r36332 r38381 192 192 global $wpdb; 193 193 194 if ( ! is_numeric( $id ) || $id != floor( $id ) || ! $id ) { 195 return false; 196 } 197 194 198 $comment_id = (int) $id; 195 if ( ! $comment_id ) {196 return false;197 }198 199 199 200 $_comment = wp_cache_get( $comment_id, 'comment' );
Note: See TracChangeset
for help on using the changeset viewer.