Remove unnecessary feedback message from WP_Importer::is_user_over_quota().

fixes #32021.
Built from https://develop.svn.wordpress.org/trunk@33008


git-svn-id: http://core.svn.wordpress.org/trunk@32979 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dominik Schilling 2015-06-30 20:32:25 +00:00
parent b214be20ad
commit 86ebc13446
2 changed files with 1 additions and 2 deletions

View File

@ -228,7 +228,6 @@ class WP_Importer {
public function is_user_over_quota() { public function is_user_over_quota() {
if ( function_exists( 'upload_is_user_over_quota' ) ) { if ( function_exists( 'upload_is_user_over_quota' ) ) {
if ( upload_is_user_over_quota() ) { if ( upload_is_user_over_quota() ) {
echo "Sorry, you have used your upload quota.\n";
return true; return true;
} }
} }

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.3-alpha-33007'; $wp_version = '4.3-alpha-33008';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.