Make WordPress Core

Ticket #56134: 56134.diff

File 56134.diff, 1.1 KB (added by SergeyBiryukov, 2 years ago)
  • src/wp-admin/includes/class-wp-site-health.php

     
    428428                                        '<p>%s</p>',
    429429                                        __( 'Your site has 1 active plugin, and it is up to date.' )
    430430                                );
    431                         } else {
     431                        } elseif ( $plugins_active > 0 ) {
    432432                                $result['description'] .= sprintf(
    433433                                        '<p>%s</p>',
    434434                                        sprintf(
     
    441441                                                $plugins_active
    442442                                        )
    443443                                );
     444                        } else {
     445                                $result['description'] .= sprintf(
     446                                        '<p>%s</p>',
     447                                        __( 'Your site does not have any active plugins.' )
     448                                );
    444449                        }
    445450                }
    446451
     
    591596                                        '<p>%s</p>',
    592597                                        __( 'Your site has 1 installed theme, and it is up to date.' )
    593598                                );
    594                         } else {
     599                        } elseif ( $themes_total > 0 ) {
    595600                                $result['description'] .= sprintf(
    596601                                        '<p>%s</p>',
    597602                                        sprintf(
     
    604609                                                $themes_total
    605610                                        )
    606611                                );
     612                        } else {
     613                                $result['description'] .= sprintf(
     614                                        '<p>%s</p>',
     615                                        __( 'Your site does not have any installed themes.' )
     616                                );
    607617                        }
    608618                }
    609619