Changeset 34693 for trunk/src/wp-comments-post.php
- Timestamp:
- 09/29/2015 05:26:44 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-comments-post.php
r34274 r34693 91 91 92 92 $comment_author = ( isset( $_POST['author'] ) && is_string( $_POST['author'] ) ) ? trim( strip_tags( $_POST['author'] ) ) : null; 93 $comment_author_email = ( isset( $_POST['email'] ) && is_ email( $_POST['email'] ) ) ? trim( $_POST['email'] ) : null;93 $comment_author_email = ( isset( $_POST['email'] ) && is_string( $_POST['email'] ) ) ? trim( $_POST['email'] ) : null; 94 94 $comment_author_url = ( isset( $_POST['url'] ) && is_string( $_POST['url'] ) ) ? trim( $_POST['url'] ) : null; 95 95 $comment_content = ( isset( $_POST['comment'] ) && is_string( $_POST['comment'] ) ) ? trim( $_POST['comment'] ) : null;
Note: See TracChangeset
for help on using the changeset viewer.