Changeset 35853 for trunk/src/wp-includes/comment.php
- Timestamp:
- 12/10/2015 03:16:51 PM (10 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/comment.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment.php
r35745 r35853 1905 1905 1906 1906 // Make sure that the comment post ID is valid (if specified). 1907 if ( isset( $commentarr['comment_post_ID'] ) && ! get_post( $commentarr['comment_post_ID'] ) ) {1907 if ( ! empty( $commentarr['comment_post_ID'] ) && ! get_post( $commentarr['comment_post_ID'] ) ) { 1908 1908 return 0; 1909 1909 }
Note: See TracChangeset
for help on using the changeset viewer.