diff --git a/wp-includes/class-wp-image-editor-gd.php b/wp-includes/class-wp-image-editor-gd.php index 616874be4a..9f526efe4c 100644 --- a/wp-includes/class-wp-image-editor-gd.php +++ b/wp-includes/class-wp-image-editor-gd.php @@ -16,9 +16,12 @@ */ class WP_Image_Editor_GD extends WP_Image_Editor { /** + * GD Resource. + * + * @access protected * @var resource */ - protected $image; // GD Resource + protected $image; public function __destruct() { if ( $this->image ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 23fc7c6be4..1974e0dea5 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-alpha-32553'; +$wp_version = '4.3-alpha-32554'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.