Fix typo, props Harald Nesland, fixes #11002

git-svn-id: https://develop.svn.wordpress.org/trunk@12152 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2009-11-06 10:53:41 +00:00
parent 92d16fba05
commit 4a79139c26
1 changed files with 2 additions and 2 deletions

View File

@ -840,8 +840,8 @@ jQuery(function($){
$disabled = defined('FTP_SSL') || defined('FTP_SSH') ? '' : ' disabled="disabled"';
foreach ( $types as $name => $text ) : ?>
<label for="<?php echo esc_atr($name) ?>">
<input type="radio" name="connection_type" id="<?php echo esc_atr($name) ?>" value="<?php echo esc_atr($name) ?>" <?php checked($name, $connection_type); echo $disabled; ?>/>
<label for="<?php echo esc_attr($name) ?>">
<input type="radio" name="connection_type" id="<?php echo esc_attr($name) ?>" value="<?php echo esc_attr($name) ?>" <?php checked($name, $connection_type); echo $disabled; ?>/>
<?php echo $text ?>
</label>
<?php endforeach; ?>