diff --git a/wp-includes/default-constants.php b/wp-includes/default-constants.php index d7a0e4efa8..c9092bd2cc 100644 --- a/wp-includes/default-constants.php +++ b/wp-includes/default-constants.php @@ -132,7 +132,7 @@ function wp_initial_constants() { */ function wp_plugin_directory_constants() { if ( !defined('WP_CONTENT_URL') ) - define( 'WP_CONTENT_URL', site_url() . '/wp-content'); // full url - WP_CONTENT_DIR is defined further up + define( 'WP_CONTENT_URL', get_option('siteurl') . '/wp-content'); // full url - WP_CONTENT_DIR is defined further up /** * Allows for the plugins directory to be moved from the default location. diff --git a/wp-includes/version.php b/wp-includes/version.php index 0df794a337..9e4e34914e 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-36059'; +$wp_version = '4.5-alpha-36061'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.