Ticket #21179: 21179-1.diff
File 21179-1.diff, 627 bytes (added by , 12 years ago) |
---|
-
wp-admin/includes/media.php
1328 1328 <?php 1329 1329 // Check quota for this blog if multisite 1330 1330 if ( is_multisite() && !is_upload_space_available() ) { 1331 echo '<p>' . sprintf( __( 'Sorry, you have filled your storage quota (%s MB).' ), get_space_allowed() ) . '</p>';1331 echo apply_filters( 'upload_over_quota_error_message', '<p>' . sprintf( __( 'Sorry, you have filled your storage quota (%s MB).' ), get_space_allowed() ) . '</p>' ); 1332 1332 return; 1333 1333 } 1334 1334