Index: wp-admin/import/blogger.php
===================================================================
--- wp-admin/import/blogger.php	(revision 12099)
+++ wp-admin/import/blogger.php	(working copy)
@@ -197,6 +197,7 @@
 		$loadauth = esc_js( __('Preparing author mapping form...') );
 		$authhead = esc_js( __('Final Step: Author Mapping') );
 		$nothing  = esc_js( __('Nothing was imported. Had you already imported this blog?') );
+		$stopping = ''; //Missing String used below.
 		$title    = __('Blogger Blogs');
 		$name     = __('Blog Name');
 		$url      = __('Blog URL');
@@ -530,7 +531,7 @@
 	}
 
 	function _normalize_tag( $matches ) {
-		return '<' . strtolower( $match[1] );
+		return '<' . strtolower( $matches[1] );
 	}
 
 	function import_post( $entry ) {
Index: wp-admin/import/blogware.php
===================================================================
--- wp-admin/import/blogware.php	(revision 12099)
+++ wp-admin/import/blogware.php	(working copy)
@@ -43,7 +43,7 @@
 	}
 
 	function _normalize_tag( $matches ) {
-		return '<' . strtolower( $match[1] );
+		return '<' . strtolower( $matches[1] );
 	}
 
 	function import_posts() {
Index: wp-admin/import/livejournal.php
===================================================================
--- wp-admin/import/livejournal.php	(revision 12099)
+++ wp-admin/import/livejournal.php	(working copy)
@@ -325,7 +325,7 @@
 	}
 
 	function _normalize_tag( $matches ) {
-		return '<' . strtolower( $match[1] );
+		return '<' . strtolower( $matches[1] );
 	}
 
 	function import_post( $post ) {
Index: wp-admin/import/rss.php
===================================================================
--- wp-admin/import/rss.php	(revision 12099)
+++ wp-admin/import/rss.php	(working copy)
@@ -44,7 +44,7 @@
 	}
 
 	function _normalize_tag( $matches ) {
-		return '<' . strtolower( $match[1] );
+		return '<' . strtolower( $matches[1] );
 	}
 
 	function get_posts() {
Index: wp-admin/import/wordpress.php
===================================================================
--- wp-admin/import/wordpress.php	(revision 12099)
+++ wp-admin/import/wordpress.php	(working copy)
@@ -358,7 +358,7 @@
 	}
 
 	function _normalize_tag( $matches ) {
-		return '<' . strtolower( $match[1] );
+		return '<' . strtolower( $matches[1] );
 	}
 
 	function process_post($post) {
Index: wp-admin/includes/class-wp-filesystem-ftpsockets.php
===================================================================
--- wp-admin/includes/class-wp-filesystem-ftpsockets.php	(revision 12099)
+++ wp-admin/includes/class-wp-filesystem-ftpsockets.php	(working copy)
@@ -298,13 +298,13 @@
 		$ret = array();
 		foreach ( $list as $struc ) {
 
-			if ( '.' == $struct['name'] || '..' == $struc['name'] )
+			if ( '.' == $struc['name'] || '..' == $struc['name'] )
 				continue;
 
 			if ( ! $include_hidden && '.' == $struc['name'][0] )
 				continue;
 
-			if ( $limit_file && $srtuc['name'] != $limit_file )
+			if ( $limit_file && $struc['name'] != $limit_file )
 				continue;
 
 			if ( 'd' == $struc['type'] ) {
