diff --git src/wp-admin/includes/class-wp-screen.php src/wp-admin/includes/class-wp-screen.php
index 4bb5995e7f..b06f665b98 100644
|
|
|
final class WP_Screen { |
| 896 | 896 | |
| 897 | 897 | <?php if ( $help_sidebar ) : ?> |
| 898 | 898 | <div class="contextual-help-sidebar"> |
| 899 | | <?php echo $help_sidebar; ?> |
| | 899 | <?php echo wp_kses_post( $help_sidebar ); ?> |
| 900 | 900 | </div> |
| 901 | 901 | <?php endif; ?> |
| 902 | 902 | |
| … |
… |
final class WP_Screen { |
| 910 | 910 | <div id="<?php echo esc_attr( $panel_id ); ?>" class="<?php echo $classes; ?>"> |
| 911 | 911 | <?php |
| 912 | 912 | // Print tab content. |
| 913 | | echo $tab['content']; |
| | 913 | echo wp_kses_post( $tab['content'] ); |
| 914 | 914 | |
| 915 | 915 | // If it exists, fire tab callback. |
| 916 | 916 | if ( ! empty( $tab['callback'] ) ) { |
diff --git src/wp-admin/includes/dashboard.php src/wp-admin/includes/dashboard.php
index b198325f27..9215c8f4cc 100644
|
|
|
function wp_dashboard_right_now() { |
| 435 | 435 | if ( ! empty( $actions ) ) : |
| 436 | 436 | ?> |
| 437 | 437 | <div class="sub"> |
| 438 | | <?php echo $actions; ?> |
| | 438 | <?php echo wp_kses_post( $actions ); ?> |
| 439 | 439 | </div> |
| 440 | 440 | <?php |
| 441 | 441 | endif; |