Making WordPress.org


Ignore:
Timestamp:
09/09/2025 04:42:58 AM (2 months ago)
Author:
dd32
Message:

Theme Directory: Don't output any PHP Notices during the theme check run during import.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/theme-directory/class-wporg-themes-upload.php

    r14523 r14525  
    703703        // Pass it through Theme Check and see how great this theme really is.
    704704        if ( $args['run_themecheck'] ) {
     705            // Disable error reporting for when this is run via CLI.
     706            $error_reporting = error_reporting(0);
    705707            ob_start();
    706708            $result = $this->check_theme();
    707709            $theme_check_output = ob_get_clean();
     710            error_reporting( $error_reporting );
    708711
    709712            // Output the Theme Check results. This is the only HTML that this function outputs.
Note: See TracChangeset for help on using the changeset viewer.