Index: /Applications/XAMPP/xamppfiles/htdocs/trunk/wp-admin/custom-background.php
===================================================================
--- /Applications/XAMPP/xamppfiles/htdocs/trunk/wp-admin/custom-background.php	(revision 14710)
+++ /Applications/XAMPP/xamppfiles/htdocs/trunk/wp-admin/custom-background.php	(working copy)
@@ -195,7 +195,7 @@
 <form method="post" action="">
 <?php wp_nonce_field('custom-background-remove', '_wpnonce-custom-background-remove'); ?>
 <input type="submit" class="button" name="remove-background" value="<?php esc_attr_e('Remove Background Image'); ?>" /><br/>
-<?php _e('This will remove the background image. You will not be able to restore any customizations.') ?>
+<?php _e('This will remove the background image. You will not be able to restore it.') ?>
 </form>
 </td>
 </tr>
@@ -208,7 +208,7 @@
 <form method="post" action="">
 <?php wp_nonce_field('custom-background-reset', '_wpnonce-custom-background-reset'); ?>
 <input type="submit" class="button" name="reset-background" value="<?php esc_attr_e('Restore Original Image'); ?>" /><br/>
-<?php _e('This will restore the original background image. You will not be able to restore any customizations.') ?>
+<?php _e('This will restore the original background image. You will not be able to restore any custom images.') ?>
 </form>
 </td>
 </tr>
@@ -262,14 +262,22 @@
 <tr valign="top">
 <th scope="row"><?php _e( 'Repeat' ); ?></th>
 <td><fieldset><legend class="screen-reader-text"><span><?php _e( 'Repeat' ); ?></span></legend>
-<label>
-<select name="background-repeat">
-	<option value="no-repeat"<?php selected('no-repeat', get_theme_mod('background_repeat', 'repeat')); ?> ><?php _e('No repeat'); ?></option>
-	<option value="repeat"<?php selected('repeat', get_theme_mod('background_repeat', 'repeat')); ?>><?php _e('Tile'); ?></option>
-	<option value="repeat-x"<?php selected('repeat-x', get_theme_mod('background_repeat', 'repeat')); ?>><?php _e('Tile Horizontally'); ?></option>
-	<option value="repeat-y"<?php selected('repeat-y', get_theme_mod('background_repeat', 'repeat')); ?>><?php _e('Tile Vertically'); ?></option>
-</select>
+<label>	
+<input name="background-repeat" type="radio" value="no-repeat"<?php checked('no-repeat', get_theme_mod('background_repeat', 'repeat')); ?> />
+<?php _e('No repeat'); ?>
 </label>
+<label>	
+<input name="background-repeat" type="radio" value="repeat"<?php checked('repeat', get_theme_mod('background_repeat', 'repeat')); ?> />
+<?php _e('Tile'); ?>
+</label>
+<label>	
+<input name="background-repeat" type="radio" value="repeat-x"<?php checked('repeat-x', get_theme_mod('background_repeat', 'repeat')); ?> />
+<?php _e('Tile Horizontally'); ?>
+</label>
+<label>	
+<input name="background-repeat" type="radio" value="repeat-y"<?php checked('repeat-y', get_theme_mod('background_repeat', 'repeat')); ?> />
+<?php _e('Tile Vertically'); ?>
+</label>
 </fieldset></td>
 </tr>
 
