From e3ffb4c442a3b6d1109e50552a01aba1b7e31cc5 Mon Sep 17 00:00:00 2001
From: markjaquith
Date: Tue, 25 May 2010 17:53:31 +0000
Subject: [PATCH] Update upload quota filled message to mention the limit and
not suggest file deletion. fixes #13479
git-svn-id: http://svn.automattic.com/wordpress/trunk@14897 1a063a9b-81f0-0310-95a4-ce76da25c4cd
---
wp-admin/includes/media.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/wp-admin/includes/media.php b/wp-admin/includes/media.php
index 9282444228..029f6f1c19 100644
--- a/wp-admin/includes/media.php
+++ b/wp-admin/includes/media.php
@@ -1434,7 +1434,7 @@ jQuery(document).ready(function($){
' . __('Sorry, you must delete files before you can upload any more.') . '
';
+ echo '' . sprintf( __( 'Sorry, you have filled your storage quota (%s MB).' ), get_space_allowed() ) . '
';
return;
}