mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-22 07:22:01 +01:00
Validation for ms-sites.php. props Utkarsh, see #13383.
git-svn-id: http://svn.automattic.com/wordpress/trunk@14672 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
f7d0fcb9d0
commit
537ea525c6
@ -133,10 +133,10 @@ switch ( $action ) {
|
||||
<tr>
|
||||
<th scope="row"><?php echo $field_label; ?></th>
|
||||
<td>
|
||||
<input type="radio" name="blog[<?php echo $field_key; ?>]" id="blog_<?php $field_key; ?>_1" value="1"<?php checked( $details->$field_key, 1 ); ?> />
|
||||
<input type="radio" name="blog[<?php echo $field_key; ?>]" id="blog_<?php echo $field_key; ?>_1" value="1"<?php checked( $details->$field_key, 1 ); ?> />
|
||||
<label for="blog_<?php echo $field_key; ?>_1"><?php _e('Yes'); ?></label>
|
||||
<input type="radio" name="blog[<?php echo $field_key; ?>]" id="blog_<?php $field_key; ?>_0" value="0"<?php checked( $details->$field_key, 0 ); ?> />
|
||||
<label for="blog_<?php echo $field_key; ?>"><?php _e('No'); ?></label>
|
||||
<input type="radio" name="blog[<?php echo $field_key; ?>]" id="blog_<?php echo $field_key; ?>_0" value="0"<?php checked( $details->$field_key, 0 ); ?> />
|
||||
<label for="blog_<?php echo $field_key; ?>_0"><?php _e('No'); ?></label>
|
||||
</td>
|
||||
</tr>
|
||||
<?php } ?>
|
||||
|
Loading…
Reference in New Issue
Block a user