mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 22:30:04 +00:00
Unset filter when inserting/updating posts. For trunk
git-svn-id: https://develop.svn.wordpress.org/trunk@18367 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -2430,6 +2430,9 @@ function wp_insert_post($postarr, $wp_error = false) {
|
||||
'post_content' => '', 'post_title' => '');
|
||||
|
||||
$postarr = wp_parse_args($postarr, $defaults);
|
||||
|
||||
unset( $postarr[ 'filter' ] );
|
||||
|
||||
$postarr = sanitize_post($postarr, 'db');
|
||||
|
||||
// export array as variables
|
||||
@@ -3611,6 +3614,8 @@ function wp_insert_attachment($object, $file = false, $parent = 0) {
|
||||
if ( !empty($parent) )
|
||||
$object['post_parent'] = $parent;
|
||||
|
||||
unset( $object[ 'filter' ] );
|
||||
|
||||
$object = sanitize_post($object, 'db');
|
||||
|
||||
// export array as variables
|
||||
|
||||
Reference in New Issue
Block a user