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:
nacin 2010-05-15 20:05:24 +00:00
parent f7d0fcb9d0
commit 537ea525c6
1 changed files with 3 additions and 3 deletions

View File

@ -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 } ?>