OSDN Git Service

Fix notices no index featured_image
authorjmslbam <jmslbam@gmail.com>
Thu, 11 Jul 2013 18:54:56 +0000 (20:54 +0200)
committerscribu <mail@scribu.net>
Thu, 11 Jul 2013 20:14:01 +0000 (23:14 +0300)
php/commands/media.php

index 3657d31..0f6db05 100644 (file)
@@ -123,13 +123,13 @@ class Media_Command extends WP_CLI_Command {
                                update_post_meta( $success, '_wp_attachment_image_alt', $assoc_args['alt'] );
 
                        // Set as featured image, if --post_id and --featured_image are set
-                       if ( !is_wp_error( $success ) && $assoc_args['post_id'] && $assoc_args['featured_image'] )
+                       if ( !is_wp_error( $success ) && $assoc_args['post_id'] && isset($assoc_args['featured_image']) )
                                update_post_meta( $assoc_args['post_id'], '_thumbnail_id', $success );
 
                        $attachment_success_text = '';
                        if ( $assoc_args['post_id'] ) {
                                $attachment_success_text = " and attached to post {$assoc_args['post_id']}";
-                               if ( $assoc_args['featured_image'] )
+                               if ( isset($assoc_args['featured_image']) )
                                        $attachment_success_text .= ' as featured image';
                        }