Changeset 47626 for trunk/src/wp-includes/comment.php
- Timestamp:
- 04/26/2020 01:42:03 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment.php
r47617 r47626 1913 1913 $comment_approved = ! isset( $data['comment_approved'] ) ? 1 : $data['comment_approved']; 1914 1914 $comment_agent = ! isset( $data['comment_agent'] ) ? '' : $data['comment_agent']; 1915 $comment_type = ! isset( $data['comment_type'] ) ? 'comment' : $data['comment_type'];1915 $comment_type = empty( $data['comment_type'] ) ? 'comment' : $data['comment_type']; 1916 1916 $comment_parent = ! isset( $data['comment_parent'] ) ? 0 : $data['comment_parent']; 1917 1917
Note: See TracChangeset
for help on using the changeset viewer.