Skip to content

Commit

Permalink
Media Library: don't show storage info on Atomic upload.php's uploader (
Browse files Browse the repository at this point in the history
  • Loading branch information
fushar authored Feb 7, 2025
1 parent 60e22d6 commit 71ea4c6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Significance: patch
Type: changed

Media Library: don't show storage info on Atomic upload.php's uploader
8 changes: 7 additions & 1 deletion projects/plugins/wpcomsh/notices/storage-notices.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,15 @@ function wpcomsh_storage_notices() {
add_action( 'admin_notices', 'wpcomsh_storage_notices' );

/**
* Display disk space usage on /wp-admin/upload.php
* Display disk space usage on the uploader
*/
function wpcomsh_display_disk_space_usage() {
global $pagenow;

if ( $pagenow === 'upload.php' ) {
return;
}

$site_info = wpcomsh_get_at_site_info();

if ( empty( $site_info['space_used'] ) || empty( $site_info['space_quota'] ) ) {
Expand Down

0 comments on commit 71ea4c6

Please sign in to comment.