Changeset 60805 for trunk/src/wp-admin/network/site-info.php
- Timestamp:
- 09/28/2025 10:36:30 PM (2 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/network/site-info.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/network/site-info.php
r60358 r60805 197 197 </tr> 198 198 <?php 199 $site_attributes_title = __( 'Attributes' ); 200 199 201 $attribute_fields = array( 'public' => _x( 'Public', 'site' ) ); 200 202 if ( ! $is_main_site ) { … … 206 208 ?> 207 209 <tr> 208 <th scope="row"><?php _e( 'Attributes' ); ?></th>210 <th scope="row"><?php echo $site_attributes_title; ?></th> 209 211 <td> 210 212 <fieldset> 211 <legend class="screen-reader-text"> 212 <?php 213 /* translators: Hidden accessibility text. */ 214 _e( 'Set site attributes' ); 215 ?> 216 </legend> 213 <legend class="screen-reader-text"><?php echo $site_attributes_title; ?></legend> 217 214 <?php foreach ( $attribute_fields as $field_key => $field_label ) : ?> 218 215 <label><input type="checkbox" name="blog[<?php echo $field_key; ?>]" value="1" <?php checked( (bool) $details->$field_key, true ); ?> <?php disabled( ! in_array( (int) $details->$field_key, array( 0, 1 ), true ) ); ?> />
Note: See TracChangeset
for help on using the changeset viewer.