Changeset 38433
- Timestamp:
- 08/29/2016 12:24:09 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/revision.php
r38118 r38433 595 595 } 596 596 597 if ( empty( $_REQUEST['_thumbnail_id'] ) || $post->ID != $post_id || '_thumbnail_id' != $meta_key || 'revision' == $post->post_type ) { 597 if ( empty( $_REQUEST['_thumbnail_id'] ) || 598 empty( $_REQUEST['preview_id'] ) || 599 $post->ID != $post_id || 600 '_thumbnail_id' != $meta_key || 601 'revision' == $post->post_type || 602 $post_id != $_REQUEST['preview_id'] 603 ) { 598 604 return $value; 599 605 } -
trunk/tests/phpunit/tests/post/thumbnails.php
r38398 r38433 238 238 $GLOBALS['post'] = self::$post; 239 239 $_REQUEST['_thumbnail_id'] = self::$attachment_id; 240 $_REQUEST['preview_id'] = self::$post->ID; 240 241 241 242 $result = _wp_preview_post_thumbnail_filter( '', self::$post->ID, '_thumbnail_id' ); 243 244 // Clean up. 245 $GLOBALS['post'] = $old_post; 246 unset( $_REQUEST['_thumbnail_id'] ); 247 unset( $_REQUEST['preview_id'] ); 248 242 249 $this->assertEquals( self::$attachment_id, $result ); 243 250 } 251 252 /** 253 * @ticket 37697 254 */ 255 function test__wp_preview_post_thumbnail_filter_secondary_post() { 256 $old_post = isset( $GLOBALS['post'] ) ? $GLOBALS['post'] : null; 257 258 $secondary_post = self::factory()->post->create( array( 259 'post_stauts' => 'publish', 260 ) 261 ); 262 263 $GLOBALS['post'] = self::$post; 264 $_REQUEST['_thumbnail_id'] = self::$attachment_id; 265 $_REQUEST['preview_id'] = $secondary_post; 266 267 $result = _wp_preview_post_thumbnail_filter( '', self::$post->ID, '_thumbnail_id' ); 268 269 // Clean up. 270 $GLOBALS['post'] = $old_post; 244 271 unset( $_REQUEST['_thumbnail_id'] ); 245 if ( null === $old_post ) { 246 unset( $GLOBALS['post'] ); 247 } else { 248 $GLOBALS['post'] = $old_post; 249 } 272 unset( $_REQUEST['preview_id'] ); 273 274 $this->assertEmpty( $result ); 250 275 } 251 276
Note: See TracChangeset
for help on using the changeset viewer.