Make WordPress Core


Ignore:
Timestamp:
05/25/2010 05:53:31 PM (14 years ago)
Author:
markjaquith
Message:

Update upload quota filled message to mention the limit and not suggest file deletion. fixes #13479

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/media.php

    r14827 r14897  
    14351435// Check quota for this blog if multisite
    14361436if ( is_multisite() && !is_upload_space_available() ) {
    1437     echo '<p>' . __('Sorry, you must delete files before you can upload any more.') . '</p>';
     1437    echo '<p>' . sprintf( __( 'Sorry, you have filled your storage quota (%s MB).' ), get_space_allowed() ) . '</p>';
    14381438    return;
    14391439}
Note: See TracChangeset for help on using the changeset viewer.