Skip to content

Commit

Permalink
Run sanitize_key() on post_status, comment_status, and ping_status on…
Browse files Browse the repository at this point in the history
… the way into the DB. Props duck_. For 3.0

git-svn-id: http://svn.automattic.com/wordpress/branches/3.0@17406 1a063a9b-81f0-0310-95a4-ce76da25c4cd
  • Loading branch information
ryan committed Feb 6, 2011
1 parent be60cf3 commit 6348d2a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions wp-includes/default-filters.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@
foreach ( array( 'pre_post_type' ) as $filter ) {
add_filter( $filter, 'sanitize_user' );
}
foreach ( array( 'pre_post_status', 'pre_post_comment_status', 'pre_post_ping_status' ) as $filter ) {
add_filter( $filter, 'sanitize_key' );
}

// Places to balance tags on input
foreach ( array( 'content_save_pre', 'excerpt_save_pre', 'comment_save_pre', 'pre_comment_content' ) as $filter ) {
Expand Down

0 comments on commit 6348d2a

Please sign in to comment.