diff --git a/wp-includes/default-constants.php b/wp-includes/default-constants.php
index dcad997..c26dc64 100644
|
a
|
b
|
function wp_initial_constants() { |
| 135 | 135 | */ |
| 136 | 136 | function wp_plugin_directory_constants() { |
| 137 | 137 | if ( !defined('WP_CONTENT_URL') ) |
| 138 | | define( 'WP_CONTENT_URL', get_option('siteurl') . '/wp-content'); // full url - WP_CONTENT_DIR is defined further up |
| | 138 | define('WP_CONTENT_URL', trim(get_option('siteurl')) . '/wp-content'); // full url - WP_CONTENT_DIR is defined further up |
| 139 | 139 | |
| 140 | 140 | /** |
| 141 | 141 | * Allows for the plugins directory to be moved from the default location. |