Changeset 2490
- Timestamp:
- 03/29/05 14:52:41 (3 years ago)
- Files:
-
- trunk/wp-comments-post.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-comments-post.php
r2464 r2490 14 14 } 15 15 16 $comment_author = $_POST['author'];17 $comment_author_email = $_POST['email'];18 $comment_author_url = $_POST['url'];19 $comment_content = $_POST['comment'];16 $comment_author = trim($_POST['author']); 17 $comment_author_email = trim($_POST['email']); 18 $comment_author_url = trim($_POST['url']); 19 $comment_content = trim($_POST['comment']); 20 20 21 21 // If the user is logged in
