From 51ee4233f1cc72680ff92a29c961d3d629c1ecab Mon Sep 17 00:00:00 2001 From: Joe McGill Date: Tue, 3 Oct 2017 03:00:48 +0000 Subject: [PATCH] Widgets: Default to "custom URL" in the image widget. This changes the default value for `link_type` in the image widget schema to 'custom'. Props bor0, desrosj. Fixes #41629. Built from https://develop.svn.wordpress.org/trunk@41696 git-svn-id: http://core.svn.wordpress.org/trunk@41530 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- wp-includes/widgets/class-wp-widget-media-image.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index ba2b127561..57c460b4a2 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.9-alpha-41695'; +$wp_version = '4.9-alpha-41696'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. diff --git a/wp-includes/widgets/class-wp-widget-media-image.php b/wp-includes/widgets/class-wp-widget-media-image.php index bba1fb3f93..780ceacad5 100644 --- a/wp-includes/widgets/class-wp-widget-media-image.php +++ b/wp-includes/widgets/class-wp-widget-media-image.php @@ -92,7 +92,7 @@ class WP_Widget_Media_Image extends WP_Widget_Media { 'link_type' => array( 'type' => 'string', 'enum' => array( 'none', 'file', 'post', 'custom' ), - 'default' => 'none', + 'default' => 'custom', 'media_prop' => 'link', 'description' => __( 'Link To' ), 'should_preview_update' => true,