Index: wp-includes/default-widgets.php
===================================================================
--- wp-includes/default-widgets.php	(revision 11010)
+++ wp-includes/default-widgets.php	(working copy)
@@ -185,6 +185,12 @@
 
 		echo $after_widget;
 	}
+
+	function form( $instance ) { ?>
+		<input name="<?php echo $this->get_field_name('title'); ?>" type="hidden" value="" />
+<?php
+	}
+
 }
 
 /**
@@ -312,7 +318,7 @@
 
 	function widget( $args, $instance ) {
 		extract($args);
-		$title = empty($instance['title']) ? '&nbsp;' : apply_filters('widget_title', $instance['title']);
+		$title = empty($instance['title']) ? '&#160;' : apply_filters('widget_title', $instance['title']);
 		echo $before_widget . $before_title . $title . $after_title;
 		echo '<div id="calendar_wrap">';
 		get_calendar();
Index: wp-includes/wp-diff.php
===================================================================
--- wp-includes/wp-diff.php	(revision 11010)
+++ wp-includes/wp-diff.php	(working copy)
@@ -128,7 +128,7 @@
 	 * @return string
 	 */
 	function emptyLine() {
-		return '<td colspan="2">&nbsp;</td>';
+		return '<td colspan="2">&#160;</td>';
 	}
 
 	/**
Index: wp-includes/comment-template.php
===================================================================
--- wp-includes/comment-template.php	(revision 11010)
+++ wp-includes/comment-template.php	(working copy)
@@ -1242,7 +1242,7 @@
 		<br />
 <?php endif; ?>
 
-		<div class="comment-meta commentmetadata"><a href="<?php echo htmlspecialchars( get_comment_link( $comment->comment_ID ) ) ?>"><?php printf(__('%1$s at %2$s'), get_comment_date(),  get_comment_time()) ?></a><?php edit_comment_link(__('(Edit)'),'&nbsp;&nbsp;','') ?></div>
+		<div class="comment-meta commentmetadata"><a href="<?php echo htmlspecialchars( get_comment_link( $comment->comment_ID ) ) ?>"><?php printf(__('%1$s at %2$s'), get_comment_date(),  get_comment_time()) ?></a><?php edit_comment_link(__('(Edit)'),'&#160;&#160;','') ?></div>
 
 		<?php comment_text() ?>
 
Index: wp-includes/general-template.php
===================================================================
--- wp-includes/general-template.php	(revision 11010)
+++ wp-includes/general-template.php	(working copy)
@@ -792,7 +792,7 @@
 				$url = get_month_link( $arcresult->year, $arcresult->month );
 				$text = sprintf(__('%1$s %2$d'), $wp_locale->get_month($arcresult->month), $arcresult->year);
 				if ( $show_post_count )
-					$after = '&nbsp;('.$arcresult->posts.')' . $afterafter;
+					$after = '&#160;('.$arcresult->posts.')' . $afterafter;
 				$output .= get_archives_link($url, $text, $format, $before, $after);
 			}
 		}
@@ -813,7 +813,7 @@
 				$url = get_year_link($arcresult->year);
 				$text = sprintf('%d', $arcresult->year);
 				if ($show_post_count)
-					$after = '&nbsp;('.$arcresult->posts.')' . $afterafter;
+					$after = '&#160;('.$arcresult->posts.')' . $afterafter;
 				$output .= get_archives_link($url, $text, $format, $before, $after);
 			}
 		}
@@ -835,7 +835,7 @@
 				$date = sprintf('%1$d-%2$02d-%3$02d 00:00:00', $arcresult->year, $arcresult->month, $arcresult->dayofmonth);
 				$text = mysql2date($archive_day_date_format, $date);
 				if ($show_post_count)
-					$after = '&nbsp;('.$arcresult->posts.')'.$afterafter;
+					$after = '&#160;('.$arcresult->posts.')'.$afterafter;
 				$output .= get_archives_link($url, $text, $format, $before, $after);
 			}
 		}
@@ -864,7 +864,7 @@
 						$url  = sprintf('%1$s/%2$s%3$sm%4$s%5$s%6$sw%7$s%8$d', get_option('home'), '', '?', '=', $arc_year, '&amp;', '=', $arcresult->week);
 						$text = $arc_week_start . $archive_week_separator . $arc_week_end;
 						if ($show_post_count)
-							$after = '&nbsp;('.$arcresult->posts.')'.$afterafter;
+							$after = '&#160;('.$arcresult->posts.')'.$afterafter;
 						$output .= get_archives_link($url, $text, $format, $before, $after);
 					}
 				}
@@ -1024,17 +1024,17 @@
 		get_month_link($previous->year, $previous->month) . '" title="' . sprintf(__('View posts for %1$s %2$s'), $wp_locale->get_month($previous->month),
 			date('Y', mktime(0, 0 , 0, $previous->month, 1, $previous->year))) . '">&laquo; ' . $wp_locale->get_month_abbrev($wp_locale->get_month($previous->month)) . '</a></td>';
 	} else {
-		echo "\n\t\t".'<td colspan="3" id="prev" class="pad">&nbsp;</td>';
+		echo "\n\t\t".'<td colspan="3" id="prev" class="pad">&#160;</td>';
 	}
 
-	echo "\n\t\t".'<td class="pad">&nbsp;</td>';
+	echo "\n\t\t".'<td class="pad">&#160;</td>';
 
 	if ( $next ) {
 		echo "\n\t\t".'<td abbr="' . $wp_locale->get_month($next->month) . '" colspan="3" id="next"><a href="' .
 		get_month_link($next->year, $next->month) . '" title="' . sprintf(__('View posts for %1$s %2$s'), $wp_locale->get_month($next->month),
 			date('Y', mktime(0, 0 , 0, $next->month, 1, $next->year))) . '">' . $wp_locale->get_month_abbrev($wp_locale->get_month($next->month)) . ' &raquo;</a></td>';
 	} else {
-		echo "\n\t\t".'<td colspan="3" id="next" class="pad">&nbsp;</td>';
+		echo "\n\t\t".'<td colspan="3" id="next" class="pad">&#160;</td>';
 	}
 
 	echo '
@@ -1090,7 +1090,7 @@
 	// See how much we should pad in the beginning
 	$pad = calendar_week_mod(date('w', $unixmonth)-$week_begins);
 	if ( 0 != $pad )
-		echo "\n\t\t".'<td colspan="'.$pad.'" class="pad">&nbsp;</td>';
+		echo "\n\t\t".'<td colspan="'.$pad.'" class="pad">&#160;</td>';
 
 	$daysinmonth = intval(date('t', $unixmonth));
 	for ( $day = 1; $day <= $daysinmonth; ++$day ) {
@@ -1115,7 +1115,7 @@
 
 	$pad = 7 - calendar_week_mod(date('w', mktime(0, 0 , 0, $thismonth, $day, $thisyear))-$week_begins);
 	if ( $pad != 0 && $pad != 7 )
-		echo "\n\t\t".'<td class="pad" colspan="'.$pad.'">&nbsp;</td>';
+		echo "\n\t\t".'<td class="pad" colspan="'.$pad.'">&#160;</td>';
 
 	echo "\n\t</tr>\n\t</tbody>\n\t</table>";
 
Index: wp-includes/classes.php
===================================================================
--- wp-includes/classes.php	(revision 11010)
+++ wp-includes/classes.php	(working copy)
@@ -1246,7 +1246,7 @@
 	 * @param array $args Uses 'selected' argument for selected page to set selected HTML attribute for option element.
 	 */
 	function start_el(&$output, $page, $depth, $args) {
-		$pad = str_repeat('&nbsp;', $depth * 3);
+		$pad = str_repeat('&#160;', $depth * 3);
 
 		$output .= "\t<option class=\"level-$depth\" value=\"$page->ID\"";
 		if ( $page->ID == $args['selected'] )
@@ -1438,7 +1438,7 @@
 	 * @param array $args Uses 'selected', 'show_count', and 'show_last_update' keys, if they exist.
 	 */
 	function start_el(&$output, $category, $depth, $args) {
-		$pad = str_repeat('&nbsp;', $depth * 3);
+		$pad = str_repeat('&#160;', $depth * 3);
 
 		$cat_name = apply_filters('list_cats', $category->name, $category);
 		$output .= "\t<option class=\"level-$depth\" value=\"".$category->term_id."\"";
@@ -1447,10 +1447,10 @@
 		$output .= '>';
 		$output .= $pad.$cat_name;
 		if ( $args['show_count'] )
-			$output .= '&nbsp;&nbsp;('. $category->count .')';
+			$output .= '&#160;&#160;('. $category->count .')';
 		if ( $args['show_last_update'] ) {
 			$format = 'Y-m-d';
-			$output .= '&nbsp;&nbsp;' . gmdate($format, $category->last_update_timestamp);
+			$output .= '&#160;&#160;' . gmdate($format, $category->last_update_timestamp);
 		}
 		$output .= "</option>\n";
 	}
Index: wp-content/themes/default/functions.php
===================================================================
--- wp-content/themes/default/functions.php	(revision 11010)
+++ wp-content/themes/default/functions.php	(working copy)
@@ -387,7 +387,7 @@
 				<input type="hidden" name="hi" id="hi" value="<?php echo attribute_escape(kubrick_header_image()); ?>" />
 				<input type="submit" name="toggledisplay" id="toggledisplay" value="<?php echo attribute_escape(__('Toggle Text')); ?>" />
 				<input type="submit" name="defaults" value="<?php echo attribute_escape(__('Use Defaults')); ?>" />
-				<input type="submit" class="defbutton" name="submitform" value="&nbsp;&nbsp;<?php _e('Save'); ?>&nbsp;&nbsp;" />
+				<input type="submit" class="defbutton" name="submitform" value="&#160;&#160;<?php _e('Save'); ?>&#160;&#160;" />
 				<input type="hidden" name="action" value="save" />
 				<input type="hidden" name="njform" value="true" />
 			</form>
Index: wp-admin/includes/dashboard.php
===================================================================
--- wp-admin/includes/dashboard.php	(revision 11010)
+++ wp-admin/includes/dashboard.php	(working copy)
@@ -524,7 +524,7 @@
 		$actions['approve'] = "<a href='$approve_url' class='dim:the-comment-list:comment-$comment->comment_ID:unapproved:e7e7d3:e7e7d3:new=approved vim-a' title='" . __( 'Approve this comment' ) . "'>" . __( 'Approve' ) . '</a>';
 		$actions['unapprove'] = "<a href='$unapprove_url' class='dim:the-comment-list:comment-$comment->comment_ID:unapproved:e7e7d3:e7e7d3:new=unapproved vim-u' title='" . __( 'Unapprove this comment' ) . "'>" . __( 'Unapprove' ) . '</a>';
 		$actions['edit'] = "<a href='comment.php?action=editcomment&amp;c={$comment->comment_ID}' title='" . __('Edit comment') . "'>". __('Edit') . '</a>';
-		//$actions['quickedit'] = '<a onclick="commentReply.open(\''.$comment->comment_ID.'\',\''.$comment->comment_post_ID.'\',\'edit\');return false;" class="vim-q" title="'.__('Quick Edit').'" href="#">' . __('Quick&nbsp;Edit') . '</a>';
+		//$actions['quickedit'] = '<a onclick="commentReply.open(\''.$comment->comment_ID.'\',\''.$comment->comment_post_ID.'\',\'edit\');return false;" class="vim-q" title="'.__('Quick Edit').'" href="#">' . __('Quick&#160;Edit') . '</a>';
 		$actions['reply'] = '<a onclick="commentReply.open(\''.$comment->comment_ID.'\',\''.$comment->comment_post_ID.'\');return false;" class="vim-r hide-if-no-js" title="'.__('Reply to this comment').'" href="#">' . __('Reply') . '</a>';
 		$actions['spam'] = "<a href='$spam_url' class='delete:the-comment-list:comment-$comment->comment_ID::spam=1 vim-s vim-destructive' title='" . __( 'Mark this comment as spam' ) . "'>" . /* translators: mark as spam link */  _x( 'Spam', 'verb' ) . '</a>';
 		$actions['delete'] = "<a href='$delete_url' class='delete:the-comment-list:comment-$comment->comment_ID delete vim-d vim-destructive'>" . __('Delete') . '</a>';
@@ -806,7 +806,7 @@
 							'&amp;TB_iframe=true&amp;width=600&amp;height=800';
 
 		echo "<h4>$label</h4>\n";
-		echo "<h5><a href='$link'>$title</a></h5>&nbsp;<span>(<a href='$ilink' class='thickbox' title='$title'>" . __( 'Install' ) . "</a>)</span>\n";
+		echo "<h5><a href='$link'>$title</a></h5>&#160;<span>(<a href='$ilink' class='thickbox' title='$title'>" . __( 'Install' ) . "</a>)</span>\n";
 		echo "<p>$description</p>\n";
 	}
 }
Index: wp-admin/includes/template.php
===================================================================
--- wp-admin/includes/template.php	(revision 11010)
+++ wp-admin/includes/template.php	(working copy)
@@ -121,7 +121,7 @@
 		$edit = "<a class='row-title' href='$edit_link' title='" . attribute_escape(sprintf(__('Edit "%s"'), $category->name)) . "'>" . attribute_escape( $name ) . '</a><br />';
 		$actions = array();
 		$actions['edit'] = '<a href="' . $edit_link . '">' . __('Edit') . '</a>';
-		$actions['inline hide-if-no-js'] = '<a href="#" class="editinline">' . __('Quick&nbsp;Edit') . '</a>';
+		$actions['inline hide-if-no-js'] = '<a href="#" class="editinline">' . __('Quick&#160;Edit') . '</a>';
 		if ( $default_cat_id != $category->term_id )
 			$actions['delete'] = "<a class='delete:the-list:cat-$category->term_id submitdelete' href='" . wp_nonce_url("categories.php?action=delete&amp;cat_ID=$category->term_id", 'delete-category_' . $category->term_id) . "'>" . __('Delete') . "</a>";
 		$actions = apply_filters('cat_row_actions', $actions, $category);
@@ -162,7 +162,7 @@
 				if ( $default_cat_id != $category->term_id ) {
 					$output .= "<input type='checkbox' name='delete[]' value='$category->term_id' />";
 				} else {
-					$output .= "&nbsp;";
+					$output .= "&#160;";
 				}
 				$output .= '</th>';
 				break;
@@ -292,7 +292,7 @@
 		$edit = "<a class='row-title' href='$edit_link' title='" . attribute_escape(sprintf(__('Edit "%s"'), $category->name)) . "'>$name</a><br />";
 		$actions = array();
 		$actions['edit'] = '<a href="' . $edit_link . '">' . __('Edit') . '</a>';
-		$actions['inline hide-if-no-js'] = '<a href="#" class="editinline">' . __('Quick&nbsp;Edit') . '</a>';
+		$actions['inline hide-if-no-js'] = '<a href="#" class="editinline">' . __('Quick&#160;Edit') . '</a>';
 		if ( $default_cat_id != $category->term_id )
 			$actions['delete'] = "<a class='delete:the-list:link-cat-$category->term_id submitdelete' href='" . wp_nonce_url("link-category.php?action=delete&amp;cat_ID=$category->term_id", 'delete-link-category_' . $category->term_id) . "'>" . __('Delete') . "</a>";
 		$actions = apply_filters('link_cat_row_actions', $actions, $category);
@@ -332,7 +332,7 @@
 				if ( absint( get_option( 'default_link_category' ) ) != $category->term_id ) {
 					$output .= "<input type='checkbox' name='delete[]' value='$category->term_id' />";
 				} else {
-					$output .= "&nbsp;";
+					$output .= "&#160;";
 				}
 				$output .= "</th>";
 				break;
@@ -652,7 +652,7 @@
 					$out .= '<td ' . $attributes . '><strong><a class="row-title" href="' . $edit_link . '" title="' . attribute_escape(sprintf(__('Edit "%s"'), $name)) . '">' . $name . '</a></strong><br />';
 					$actions = array();
 					$actions['edit'] = '<a href="' . $edit_link . '">' . __('Edit') . '</a>';
-					$actions['inline hide-if-no-js'] = '<a href="#" class="editinline">' . __('Quick&nbsp;Edit') . '</a>';
+					$actions['inline hide-if-no-js'] = '<a href="#" class="editinline">' . __('Quick&#160;Edit') . '</a>';
 					$actions['delete'] = "<a class='delete:the-list:tag-$tag->term_id submitdelete' href='" . wp_nonce_url("edit-tags.php?action=delete&amp;taxonomy=$taxonomy&amp;tag_ID=$tag->term_id", 'delete-tag_' . $tag->term_id) . "'>" . __('Delete') . "</a>";
 					$actions = apply_filters('tag_row_actions', $actions, $tag);
 					$action_count = count($actions);
@@ -1435,7 +1435,7 @@
 			$actions = array();
 			if ( current_user_can('edit_post', $post->ID) ) {
 				$actions['edit'] = '<a href="' . get_edit_post_link($post->ID, true) . '" title="' . attribute_escape(__('Edit this post')) . '">' . __('Edit') . '</a>';
-				$actions['inline hide-if-no-js'] = '<a href="#" class="editinline" title="' . attribute_escape(__('Edit this post inline')) . '">' . __('Quick&nbsp;Edit') . '</a>';
+				$actions['inline hide-if-no-js'] = '<a href="#" class="editinline" title="' . attribute_escape(__('Edit this post inline')) . '">' . __('Quick&#160;Edit') . '</a>';
 				$actions['delete'] = "<a class='submitdelete' title='" . attribute_escape(__('Delete this post')) . "' href='" . wp_nonce_url("post.php?action=delete&amp;post=$post->ID", 'delete-post_' . $post->ID) . "' onclick=\"if ( confirm('" . js_escape(sprintf( ('draft' == $post->post_status) ? __("You are about to delete this draft '%s'\n 'Cancel' to stop, 'OK' to delete.") : __("You are about to delete this post '%s'\n 'Cancel' to stop, 'OK' to delete."), $post->post_title )) . "') ) { return true;}return false;\">" . __('Delete') . "</a>";
 			}
 			if ( in_array($post->post_status, array('pending', 'draft')) ) {
@@ -1648,7 +1648,7 @@
 		$actions = array();
 		if ( current_user_can('edit_page', $page->ID) ) {
 			$actions['edit'] = '<a href="' . $edit_link . '" title="' . attribute_escape(__('Edit this page')) . '">' . __('Edit') . '</a>';
-			$actions['inline'] = '<a href="#" class="editinline">' . __('Quick&nbsp;Edit') . '</a>';
+			$actions['inline'] = '<a href="#" class="editinline">' . __('Quick&#160;Edit') . '</a>';
 			$actions['delete'] = "<a class='submitdelete' title='" . attribute_escape(__('Delete this page')) . "' href='" . wp_nonce_url("page.php?action=delete&amp;post=$page->ID", 'delete-page_' . $page->ID) . "' onclick=\"if ( confirm('" . js_escape(sprintf( ('draft' == $page->post_status) ? __("You are about to delete this draft '%s'\n 'Cancel' to stop, 'OK' to delete.") : __("You are about to delete this page '%s'\n 'Cancel' to stop, 'OK' to delete."), $page->post_title )) . "') ) { return true;}return false;\">" . __('Delete') . "</a>";
 		}
 		if ( in_array($post->post_status, array('pending', 'draft')) ) {
@@ -2138,7 +2138,7 @@
 						$actions['spam'] = "<a href='$spam_url' class='delete:the-comment-list:comment-$comment->comment_ID::spam=1 vim-s vim-destructive' title='" . __( 'Mark this comment as spam' ) . "'>" . /* translators: mark as spam link */ _x( 'Spam', 'verb' ) . '</a>';
 					$actions['delete'] = "<a href='$delete_url' class='delete:the-comment-list:comment-$comment->comment_ID delete vim-d vim-destructive'>" . __('Delete') . '</a>';
 					$actions['edit'] = "<a href='comment.php?action=editcomment&amp;c={$comment->comment_ID}' title='" . __('Edit comment') . "'>". __('Edit') . '</a>';
-					$actions['quickedit'] = '<a onclick="commentReply.open(\''.$comment->comment_ID.'\',\''.$post->ID.'\',\'edit\');return false;" class="vim-q" title="'.__('Quick Edit').'" href="#">' . __('Quick&nbsp;Edit') . '</a>';
+					$actions['quickedit'] = '<a onclick="commentReply.open(\''.$comment->comment_ID.'\',\''.$post->ID.'\',\'edit\');return false;" class="vim-q" title="'.__('Quick Edit').'" href="#">' . __('Quick&#160;Edit') . '</a>';
 					if ( 'spam' != $the_comment_status )
 						$actions['reply'] = '<a onclick="commentReply.open(\''.$comment->comment_ID.'\',\''.$post->ID.'\');return false;" class="vim-r" title="'.__('Reply to this comment').'" href="#">' . __('Reply') . '</a>';
 
@@ -2212,12 +2212,6 @@
 					echo "<a href='" . get_permalink( $post->ID ) . "'>#</a>";
 					echo '</div></td>';
 				}
-				break;
-			default:
-				echo "<td $attributes>\n";
-				do_action( 'manage_comments_custom_column', $column_name, $comment->comment_ID );
-				echo "</td>\n";
-				break;
 		}
 	}
 	echo "</tr>\n";
@@ -2609,7 +2603,7 @@
 					continue;
 				}
 			}
-			$pad = str_repeat( '&nbsp;', $level * 3 );
+			$pad = str_repeat( '&#160;', $level * 3 );
 			if ( $item->ID == $default)
 				$current = ' selected="selected"';
 			else
Index: wp-admin/includes/media.php
===================================================================
--- wp-admin/includes/media.php	(revision 11010)
+++ wp-admin/includes/media.php	(working copy)
@@ -790,7 +790,7 @@
 			$html .= "<label for='{$css_id}'>" . __($name). "</label>";
 			// only show the dimensions if that choice is available
 			if ( $enabled )
-				$html .= " <label for='{$css_id}' class='help'>" . sprintf( __("(%d&nbsp;&times;&nbsp;%d)"), $downsize[1], $downsize[2] ). "</label>";
+				$html .= " <label for='{$css_id}' class='help'>" . sprintf( __("(%d&#160;&times;&#160;%d)"), $downsize[1], $downsize[2] ). "</label>";
 
 			$html .= '</div>';
 
Index: wp-admin/js/theme-preview.dev.js
===================================================================
--- wp-admin/js/theme-preview.dev.js	(revision 11010)
+++ wp-admin/js/theme-preview.dev.js	(working copy)
@@ -36,10 +36,10 @@
 		if ( alink.length ) {
 			url = alink.attr('href') || '';
 			text = alink.attr('title') || '';
-			link = '&nbsp; <a href="' + url + '" target="_top" class="tb-theme-preview-link">' + text + '</a>';
+			link = '&#160; <a href="' + url + '" target="_top" class="tb-theme-preview-link">' + text + '</a>';
 		} else {
 			text = $(this).attr('title') || '';
-			link = '&nbsp; <span class="tb-theme-preview-link">' + text + '</span>';
+			link = '&#160; <span class="tb-theme-preview-link">' + text + '</span>';
 		}
 
 		$('#TB_title').css({'background-color':'#222','color':'#dfdfdf'});
Index: wp-admin/js/post.dev.js
===================================================================
--- wp-admin/js/post.dev.js	(revision 11010)
+++ wp-admin/js/post.dev.js	(working copy)
@@ -40,7 +40,7 @@
 		val = jQuery.trim(val);
 		if ( !val.match(/^\s+$/) && '' != val ) {
 			button_id = jQuery(taxbox).attr('id') + '-check-num-' + key;
- 			txt = '<span><a id="' + button_id + '" class="ntdelbutton">X</a>&nbsp;' + val + '</span> ';
+ 			txt = '<span><a id="' + button_id + '" class="ntdelbutton">X</a>&#160;' + val + '</span> ';
  			jQuery(taxbox).find('.tagchecklist').append(txt);
  			jQuery( '#' + button_id ).click( new_tag_remove_tag );
 		}
Index: wp-admin/js/plugin-install.dev.js
===================================================================
--- wp-admin/js/plugin-install.dev.js	(revision 11010)
+++ wp-admin/js/plugin-install.dev.js	(working copy)
@@ -23,7 +23,7 @@
 
 	thickDims().click( function() {
 		$('#TB_title').css({'background-color':'#222','color':'#cfcfcf'});
-		$('#TB_ajaxWindowTitle').html('<strong>' + plugininstallL10n.plugin_information + '</strong>&nbsp;' + $(this).attr('title') );
+		$('#TB_ajaxWindowTitle').html('<strong>' + plugininstallL10n.plugin_information + '</strong>&#160;' + $(this).attr('title') );
 		return false;
 	});
 
Index: wp-admin/theme-editor.php
===================================================================
--- wp-admin/theme-editor.php	(revision 11010)
+++ wp-admin/theme-editor.php	(working copy)
@@ -227,7 +227,7 @@
 		echo '<div class="error"><p>' . __('Oops, no such file exists! Double check the name and try again, merci.') . '</p></div>';
 	}
 	?>
-<div class="clear"> &nbsp; </div>
+<div class="clear"> &#160; </div>
 </div>
 <?php
 break;
Index: wp-admin/edit-page-form.php
===================================================================
--- wp-admin/edit-page-form.php	(revision 11010)
+++ wp-admin/edit-page-form.php	(working copy)
@@ -21,7 +21,7 @@
 $messages[1] = sprintf( __( 'Page updated. Continue editing below or <a href="%s">go back</a>.' ), attribute_escape( stripslashes( ( isset( $_GET['_wp_original_http_referer'] ) ? $_GET['_wp_original_http_referer'] : '') ) ) );
 $messages[2] = __('Custom field updated.');
 $messages[3] = __('Custom field deleted.');
-$messages[4] = sprintf(__('Page updated. <a href="%s">View page</a>'), get_permalink($post_ID));
+$messages[4] = __('Page updated.');
 $messages[5] = sprintf(__('Page published. <a href="%s">View page</a>'), get_permalink($post_ID));
 $messages[6] = sprintf(__('Page submitted. <a href="%s">Preview page</a>'), add_query_arg( 'preview', 'true', get_permalink($post_ID) ) );
 
@@ -460,7 +460,7 @@
 <table id="post-status-info" cellspacing="0"><tbody><tr>
 	<td id="wp-word-count"></td>
 	<td class="autosave-info">
-	<span id="autosave">&nbsp;</span>
+	<span id="autosave">&#160;</span>
 
 <?php
 	if ($post_ID) {
Index: wp-admin/edit-attachment-rows.php
===================================================================
--- wp-admin/edit-attachment-rows.php	(revision 11010)
+++ wp-admin/edit-attachment-rows.php	(working copy)
@@ -156,7 +156,7 @@
 			<?php
 		} else {
 			?>
-			<td <?php echo $attributes ?>>&nbsp;</td>
+			<td <?php echo $attributes ?>>&#160;</td>
 			<?php
 		}
 
Index: wp-admin/edit-link-form.php
===================================================================
--- wp-admin/edit-link-form.php	(revision 11010)
+++ wp-admin/edit-link-form.php	(working copy)
@@ -305,11 +305,11 @@
 <table class="form-table" style="width: 100%;" cellspacing="2" cellpadding="5">
 	<tr class="form-field">
 		<th valign="top"  scope="row"><label for="link_image"><?php _e('Image Address') ?></label></th>
-		<td><input type="text" name="link_image" class="code" id="link_image" size="50" value="<?php echo ( isset( $link->link_image ) ? $link->link_image : ''); ?>" style="width: 95%" /></td>
+		<td><input type="text" name="link_image" id="link_image" size="50" value="<?php echo ( isset( $link->link_image ) ? $link->link_image : ''); ?>" style="width: 95%" /></td>
 	</tr>
 	<tr class="form-field">
 		<th valign="top"  scope="row"><label for="rss_uri"><?php _e('RSS Address') ?></label></th>
-		<td><input name="link_rss" class="code" type="text" id="rss_uri" value="<?php echo  ( isset( $link->link_rss ) ? $link->link_rss : ''); ?>" size="50" style="width: 95%" /></td>
+		<td><input name="link_rss" type="text" id="rss_uri" value="<?php echo  ( isset( $link->link_rss ) ? $link->link_rss : ''); ?>" size="50" style="width: 95%" /></td>
 	</tr>
 	<tr class="form-field">
 		<th valign="top"  scope="row"><label for="link_notes"><?php _e('Notes') ?></label></th>
@@ -325,7 +325,7 @@
 					echo 'selected="selected"';
 				echo('>'.$r.'</option>');
 			}
-		?></select>&nbsp;<?php _e('(Leave at 0 for no rating.)') ?>
+		?></select>&#160;<?php _e('(Leave at 0 for no rating.)') ?>
 		</td>
 	</tr>
 </table>
@@ -382,7 +382,7 @@
 <div id="addressdiv" class="stuffbox">
 <h3><label for="link_url"><?php _e('Web Address') ?></label></h3>
 <div class="inside">
-	<input type="text" name="link_url" size="30" class="code" tabindex="1" value="<?php echo $link->link_url; ?>" id="link_url" />
+	<input type="text" name="link_url" size="30" tabindex="1" value="<?php echo $link->link_url; ?>" id="link_url" />
     <p><?php _e('Example: <code>http://wordpress.org/</code> &#8212; don&#8217;t forget the <code>http://</code>'); ?></p>
 </div>
 </div>
Index: wp-admin/import/btt.php
===================================================================
--- wp-admin/import/btt.php	(revision 11010)
+++ wp-admin/import/btt.php	(working copy)
@@ -91,7 +91,7 @@
 					foreach ( $post_keys as $keyword ) {
 						$keyword = addslashes(trim(str_replace('+',' ',$keyword)));
 						if ( '' != $keyword ) {
-							echo '<li>' . $post_meta->post_id . '&nbsp;-&nbsp;' . $keyword . '</li>';
+							echo '<li>' . $post_meta->post_id . '&#160;-&#160;' . $keyword . '</li>';
 							if ( !$precheck )
 								wp_add_post_tags($post_meta->post_id, $keyword);
 						}
Index: wp-admin/import/jkw.php
===================================================================
--- wp-admin/import/jkw.php	(revision 11010)
+++ wp-admin/import/jkw.php	(working copy)
@@ -106,7 +106,7 @@
 					foreach ( $post_keys as $keyword ) {
 						$keyword = addslashes(trim($keyword));
 						if ( '' != $keyword ) {
-							echo '<li>' . $post_meta->post_id . '&nbsp;-&nbsp;' . $keyword . '</li>';
+							echo '<li>' . $post_meta->post_id . '&#160;-&#160;' . $keyword . '</li>';
 							if ( !$precheck )
 								wp_add_post_tags($post_meta->post_id, $keyword);
 						}
@@ -144,7 +144,7 @@
 			foreach ( $metakeys as $post_meta ) {
 				$keyword = addslashes(trim($post_meta->tag_name));
 				if ( $keyword != '' ) {
-					echo '<li>' . $post_meta->post_id . '&nbsp;-&nbsp;' . $keyword . '</li>';
+					echo '<li>' . $post_meta->post_id . '&#160;-&#160;' . $keyword . '</li>';
 					if ( !$precheck )
 						wp_add_post_tags($post_meta->post_id, $keyword);
 				}
Index: wp-admin/import/blogger.php
===================================================================
--- wp-admin/import/blogger.php	(revision 11010)
+++ wp-admin/import/blogger.php	(working copy)
@@ -218,8 +218,8 @@
 			$pdone = isset($blog['posts_done']) ? (int) $blog['posts_done'] : 0;
 			$cdone = isset($blog['comments_done']) ? (int) $blog['comments_done'] : 0;
 			$init .= "blogs[$i]=new blog($i,'$blogtitle','{$blog['mode']}'," . $this->get_js_status($i) . ');';
-			$pstat = "<div class='ind' id='pind$i'>&nbsp;</div><div id='pstat$i' class='stat'>$pdone/{$blog['total_posts']}</div>";
-			$cstat = "<div class='ind' id='cind$i'>&nbsp;</div><div id='cstat$i' class='stat'>$cdone/{$blog['total_comments']}</div>";
+			$pstat = "<div class='ind' id='pind$i'>&#160;</div><div id='pstat$i' class='stat'>$pdone/{$blog['total_posts']}</div>";
+			$cstat = "<div class='ind' id='cind$i'>&#160;</div><div id='cstat$i' class='stat'>$cdone/{$blog['total_comments']}</div>";
 			$rows .= "<tr id='blog$i'><td class='blogtitle'>$blogtitle</td><td class='bloghost'>{$blog['host']}</td><td class='bar'>$pstat</td><td class='bar'>$cstat</td><td class='submit'><input type='submit' class='button' id='submit$i' value='$value' /><input type='hidden' name='blog' value='$i' /></td></tr>\n";
 		}
 
Index: wp-admin/import/greymatter.php
===================================================================
--- wp-admin/import/greymatter.php	(revision 11010)
+++ wp-admin/import/greymatter.php	(working copy)
@@ -44,7 +44,7 @@
 <li><?php _e('Import gm-templates.') ?></li>
 <li><?php _e("Doesn't keep entries on top.")?></li>
 </ul>
-<p>&nbsp;</p>
+<p>&#160;</p>
 
 <form name="stepOne" method="get" action="">
 <input type="hidden" name="import" value="greymatter" />
@@ -297,7 +297,7 @@
 	do_action('import_done', 'greymatter');
 	?>
 </ul><strong><?php _e('Done') ?></strong></li></ul>
-<p>&nbsp;</p>
+<p>&#160;</p>
 <p><?php _e('Completed GreyMatter import!') ?></p>
 <?php
 	$this->footer();
Index: wp-admin/edit-form-comment.php
===================================================================
--- wp-admin/edit-form-comment.php	(revision 11010)
+++ wp-admin/edit-form-comment.php	(working copy)
@@ -60,7 +60,7 @@
 $stamp = __('Submitted on: <b>%1$s</b>');
 $date = date_i18n( $datef, strtotime( $comment->comment_date ) );
 ?>
-<span id="timestamp"><?php printf($stamp, $date); ?></span>&nbsp;<a href="#edit_timestamp" class="edit-timestamp hide-if-no-js" tabindex='4'><?php _e('Edit') ?></a>
+<span id="timestamp"><?php printf($stamp, $date); ?></span>&#160;<a href="#edit_timestamp" class="edit-timestamp hide-if-no-js" tabindex='4'><?php _e('Edit') ?></a>
 <div id='timestampdiv' class='hide-if-js'><?php touch_time(('editcomment' == $action), 0, 5); ?></div>
 </div>
 </div> <!-- misc actions -->
@@ -113,7 +113,7 @@
 		} else {
 			_e( 'URL:' );
 		} ?></td>
-	<td><input type="text" id="newcomment_author_url" name="newcomment_author_url" size="30" class="code" value="<?php echo $url; ?>" tabindex="3" /></td>
+	<td><input type="text" id="newcomment_author_url" name="newcomment_author_url" size="30" value="<?php echo $url; ?>" tabindex="3" /></td>
 </tr>
 </tbody>
 </table>
Index: wp-admin/edit-form-advanced.php
===================================================================
--- wp-admin/edit-form-advanced.php	(revision 11010)
+++ wp-admin/edit-form-advanced.php	(working copy)
@@ -384,7 +384,7 @@
  * @param object $post
  */
 function post_trackback_meta_box($post) {
-	$form_trackback = '<input type="text" name="trackback_url" id="trackback_url" class="code" tabindex="7" value="'. attribute_escape( str_replace("\n", ' ', $post->to_ping) ) .'" />';
+	$form_trackback = '<input type="text" name="trackback_url" id="trackback_url" tabindex="7" value="'. attribute_escape( str_replace("\n", ' ', $post->to_ping) ) .'" />';
 	if ('' != $post->pinged) {
 		$pings = '<p>'. __('Already pinged:') . '</p><ul>';
 		$already_pinged = explode("\n", trim($post->pinged));
@@ -616,7 +616,7 @@
 <table id="post-status-info" cellspacing="0"><tbody><tr>
 	<td id="wp-word-count"></td>
 	<td class="autosave-info">
-	<span id="autosave">&nbsp;</span>
+	<span id="autosave">&#160;</span>
 <?php
 	if ( $post_ID ) {
 		echo '<span id="last-edit">';
Index: wp-admin/admin-header.php
===================================================================
--- wp-admin/admin-header.php	(revision 11010)
+++ wp-admin/admin-header.php	(working copy)
@@ -84,7 +84,7 @@
 <?php
 $blog_name = get_bloginfo('name', 'display');
 if ( '' == $blog_name ) {
-	$blog_name = '&nbsp;';
+	$blog_name = '&#160;';
 } else {
 	$blog_name_excerpt = wp_html_excerpt($blog_name, 40);
 	if ( $blog_name != $blog_name_excerpt )
Index: wp-admin/user-edit.php
===================================================================
--- wp-admin/user-edit.php	(revision 11010)
+++ wp-admin/user-edit.php	(working copy)
@@ -211,7 +211,7 @@
 	<table class="color-palette">
 	<tr>
 	<?php foreach ( $color_info->colors as $html_color ): ?>
-	<td style="background-color: <?php echo $html_color ?>" title="<?php echo $color ?>">&nbsp;</td>
+	<td style="background-color: <?php echo $html_color ?>" title="<?php echo $color ?>">&#160;</td>
 	<?php endforeach; ?>
 	</tr>
 	</table>
@@ -280,7 +280,7 @@
 </tr>
 
 <tr>
-	<th><label for="display_name"><?php _e('Display name publicly&nbsp;as') ?></label></th>
+	<th><label for="display_name"><?php _e('Display name publicly&#160;as') ?></label></th>
 	<td>
 		<select name="display_name" id="display_name">
 		<?php
Index: wp-admin/update-core.php
===================================================================
--- wp-admin/update-core.php	(revision 11010)
+++ wp-admin/update-core.php	(working copy)
@@ -40,10 +40,10 @@
 	echo '<form method="post" action="' . $form_action . '" name="upgrade" class="upgrade">';
 	wp_nonce_field('upgrade-core');
 	echo '<p>';
-	echo '<input id="upgrade" class="button" type="submit" value="' . $submit . '" name="upgrade" />&nbsp;';
+	echo '<input id="upgrade" class="button" type="submit" value="' . $submit . '" name="upgrade" />&#160;';
 	echo '<input name="version" value="'.$update->current.'" type="hidden"/>';
 	echo '<input name="locale" value="'.$update->locale.'" type="hidden"/>';
-	echo '<a href="' . $update->package . '" class="button">' . $download . '</a>&nbsp;';
+	echo '<a href="' . $update->package . '" class="button">' . $download . '</a>&#160;';
 	if ( 'en_US' != $update->locale )
 		if ( !isset( $update->dismissed ) || !$update->dismissed )
 			echo '<input id="dismiss" class="button" type="submit" value="' . attribute_escape(__('Hide this update')) . '" name="dismiss" />';
Index: wp-admin/plugin-editor.php
===================================================================
--- wp-admin/plugin-editor.php	(revision 11010)
+++ wp-admin/plugin-editor.php	(working copy)
@@ -231,7 +231,7 @@
 		echo '<div class="error"><p>' . $error . '</p></div>';
 	}
 ?>
-<div class="clear"> &nbsp; </div>
+<div class="clear"> &#160; </div>
 </div>
 <?php
 	break;
