| 1 | Index: wp-admin/ms-sites.php |
|---|
| 2 | =================================================================== |
|---|
| 3 | --- wp-admin/ms-sites.php (revision 14653) |
|---|
| 4 | +++ wp-admin/ms-sites.php (working copy) |
|---|
| 5 | @@ -133,10 +133,10 @@ |
|---|
| 6 | <tr> |
|---|
| 7 | <th scope="row"><?php echo $field_label; ?></th> |
|---|
| 8 | <td> |
|---|
| 9 | - <input type="radio" name="blog[<?php echo $field_key; ?>]" id="blog_<?php $field_key; ?>_1" value="1"<?php checked( $details->$field_key, 1 ); ?> /> |
|---|
| 10 | + <input type="radio" name="blog[<?php echo $field_key; ?>]" id="blog_<?php echo $field_key; ?>_1" value="1"<?php checked( $details->$field_key, 1 ); ?> /> |
|---|
| 11 | <label for="blog_<?php echo $field_key; ?>_1"><?php _e('Yes'); ?></label> |
|---|
| 12 | - <input type="radio" name="blog[<?php echo $field_key; ?>]" id="blog_<?php $field_key; ?>_0" value="0"<?php checked( $details->$field_key, 0 ); ?> /> |
|---|
| 13 | - <label for="blog_<?php echo $field_key; ?>"><?php _e('No'); ?></label> |
|---|
| 14 | + <input type="radio" name="blog[<?php echo $field_key; ?>]" id="blog_<?php echo $field_key; ?>_0" value="0"<?php checked( $details->$field_key, 0 ); ?> /> |
|---|
| 15 | + <label for="blog_<?php echo $field_key; ?>_0"><?php _e('No'); ?></label> |
|---|
| 16 | </td> |
|---|
| 17 | </tr> |
|---|
| 18 | <?php } ?> |
|---|