Changeset 43006 for trunk/src/wp-admin/includes/template.php
- Timestamp:
- 04/26/2018 02:30:24 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/template.php
r42974 r43006 1141 1141 echo '</button>'; 1142 1142 } 1143 echo "<h2 class='hndle'><span>{$box['title']}</span></h2>\n"; 1143 echo '<h2 class="hndle">'; 1144 if ( 'dashboard_php_nag' === $box['id'] ) { 1145 echo '<span aria-hidden="true" class="dashicons dashicons-warning"></span>'; 1146 echo '<span class="screen-reader-text">' . __( 'Warning:' ) . ' </span>'; 1147 } 1148 echo "<span>{$box['title']}</span>"; 1149 echo "</h2>\n"; 1144 1150 echo '<div class="inside">' . "\n"; 1145 1151 call_user_func( $box['callback'], $object, $box ); … … 2167 2173 <!DOCTYPE html> 2168 2174 <!--[if IE 8]> 2169 <html xmlns="http://www.w3.org/1999/xhtml" class="ie8 <?php echo $admin_html_class; ?>" 2175 <html xmlns="http://www.w3.org/1999/xhtml" class="ie8 <?php echo $admin_html_class; ?>" 2170 2176 <?php 2171 2177 /** … … 2179 2185 <![endif]--> 2180 2186 <!--[if !(IE 8) ]><!--> 2181 <html xmlns="http://www.w3.org/1999/xhtml" class="<?php echo $admin_html_class; ?>" 2187 <html xmlns="http://www.w3.org/1999/xhtml" class="<?php echo $admin_html_class; ?>" 2182 2188 <?php 2183 2189 /** This action is documented in wp-admin/includes/template.php */
Note: See TracChangeset
for help on using the changeset viewer.