Make WordPress Core


Ignore:
Timestamp:
07/10/2012 01:33:44 PM (13 years ago)
Author:
westi
Message:

Multisite: Make it easy to replace or augment the over-quota message displayed when you try and upload new media and you have reached your quota.

Fixes #21179 props dllh, jkudish.

File:
1 edited

Legend:

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

    r21240 r21256  
    13271327?></div>
    13281328<?php
    1329 // Check quota for this blog if multisite
    13301329if ( is_multisite() && !is_upload_space_available() ) {
    1331     echo '<p>' . sprintf( __( 'Sorry, you have filled your storage quota (%s MB).' ), get_space_allowed() ) . '</p>';
     1330    do_action( 'upload_ui_over_quota' );
    13321331    return;
    13331332}
     
    20662065add_action('post-plupload-upload-ui', 'media_upload_flash_bypass');
    20672066
     2067function multisite_over_quota_message() {
     2068    echo '<p>' . sprintf( __( 'Sorry, you have used all of your storage quota of %s MB.' ), get_space_allowed() ) . '</p>';
     2069}
     2070
    20682071/**
    20692072 * {@internal Missing Short Description}}
Note: See TracChangeset for help on using the changeset viewer.