Changeset 45087 for trunk/src/wp-admin/site-health-info.php
- Timestamp:
- 04/01/2019 03:07:30 PM (7 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/site-health-info.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/site-health-info.php
r45076 r45087 96 96 </div> 97 97 98 <d l id="health-check-debug" role="presentation" class="health-check-accordion">98 <div id="health-check-debug" class="health-check-accordion"> 99 99 100 100 <?php … … 104 104 } 105 105 ?> 106 < dt role="heading" aria-level="3">107 <button aria-expanded="false" class="health-check-accordion-trigger" aria-controls="health-check-accordion-block-<?php echo esc_attr( $section ); ?>" id="health-check-accordion-heading-<?php echo esc_attr( $section ); ?>"type="button">108 <span class="title">109 <?php echo esc_html( $details['label'] ); ?>106 <h3 class="health-check-accordion-heading"> 107 <button aria-expanded="false" class="health-check-accordion-trigger" aria-controls="health-check-accordion-block-<?php echo esc_attr( $section ); ?>" type="button"> 108 <span class="title"> 109 <?php echo esc_html( $details['label'] ); ?> 110 110 111 <?php if ( isset( $details['show_count'] ) && $details['show_count'] ) : ?>112 <?php printf( '(%d)', count( $details['fields'] ) ); ?>113 <?php endif; ?>114 </span>111 <?php if ( isset( $details['show_count'] ) && $details['show_count'] ) : ?> 112 <?php printf( '(%d)', count( $details['fields'] ) ); ?> 113 <?php endif; ?> 114 </span> 115 115 <span class="icon"></span> 116 116 </button> 117 </ dt>117 </h3> 118 118 119 <d d id="health-check-accordion-block-<?php echo esc_attr( $section ); ?>" role="region" aria-labelledby="health-check-accordion-heading-<?php echo esc_attr( $section ); ?>" class="health-check-accordion-panel" hidden="hidden">119 <div id="health-check-accordion-block-<?php echo esc_attr( $section ); ?>" class="health-check-accordion-panel" hidden="hidden"> 120 120 <?php 121 121 if ( isset( $details['description'] ) && ! empty( $details['description'] ) ) { … … 162 162 </tbody> 163 163 </table> 164 </d d>164 </div> 165 165 <?php } ?> 166 </d l>166 </div> 167 167 </div> 168 168
Note: See TracChangeset
for help on using the changeset viewer.