Ticket #3051: 3051.2.patch
File 3051.2.patch, 1.4 KB (added by , 6 years ago) |
---|
-
wordpress.org/public_html/wp-content/plugins/phpunit-test-reporter/src/class-display.php
31 31 return $content; 32 32 } 33 33 34 if ( ! did_action( 'loop_start' ) ) { 35 return $content; 36 } 37 34 38 if ( get_queried_object()->post_parent ) { 35 39 $content = ptr_get_template_part( 'single-result', array( 36 40 'report' => get_queried_object(), -
wordpress.org/public_html/wp-content/themes/pub/wporg-breathe/functions.php
75 75 add_action( 'wp_footer', __NAMESPACE__ . '\inline_scripts' ); 76 76 77 77 function welcome_box() { 78 // Disable for make.wordpress.org/hosting/test-results/*79 // because it breaks rendering of the page80 if ( is_singular( 'result' ) ) {81 return;82 }83 78 $welcome = get_page_by_path( 'welcome' ); 84 79 $cookie = 'welcome-' . get_current_blog_id(); 85 80 $hash = isset( $_COOKIE[ $cookie ] ) ? $_COOKIE[ $cookie ] : '';