From 54521415c23e8da19b7f1b9f9059490d545b2efe Mon Sep 17 00:00:00 2001 From: wpmuguru Date: Thu, 10 Jun 2010 21:31:46 +0000 Subject: [PATCH] alway update fileupload_url during initial network install, see #13828 git-svn-id: http://svn.automattic.com/wordpress/trunk@15202 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/schema.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/includes/schema.php b/wp-admin/includes/schema.php index 38b13deacb..e912f637ca 100644 --- a/wp-admin/includes/schema.php +++ b/wp-admin/includes/schema.php @@ -738,8 +738,8 @@ Thanks! if ( !$upload_path = get_option( 'upload_path' ) ) { $upload_path = substr( WP_CONTENT_DIR, strlen( ABSPATH ) ) . '/uploads'; update_option( 'upload_path', $upload_path ); - update_option( 'fileupload_url', get_option( 'siteurl' ) . '/' . $upload_path ); } + update_option( 'fileupload_url', get_option( 'siteurl' ) . '/' . $upload_path ); } if ( $subdomain_install )