Changeset 43569 for trunk/src/wp-admin/network/site-info.php
- Timestamp:
- 08/15/2018 06:22:00 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/network/site-info.php
r42343 r43569 194 194 <legend class="screen-reader-text"><?php _e( 'Set site attributes' ); ?></legend> 195 195 <?php foreach ( $attribute_fields as $field_key => $field_label ) : ?> 196 <label><input type="checkbox" name="blog[<?php echo $field_key; ?>]" value="1" 197 <?php 198 checked( (bool) $details->$field_key, true ); 199 disabled( ! in_array( $details->$field_key, array( 0, 1 ) ) ); 200 ?> 201 /> 196 <label><input type="checkbox" name="blog[<?php echo $field_key; ?>]" value="1" <?php checked( (bool) $details->$field_key, true ); ?> <?php disabled( ! in_array( $details->$field_key, array( 0, 1 ) ) ); ?> /> 202 197 <?php echo $field_label; ?></label><br/> 203 198 <?php endforeach; ?>
Note: See TracChangeset
for help on using the changeset viewer.