Typo fixes, props dd32, fixes #11030

git-svn-id: http://svn.automattic.com/wordpress/trunk@12104 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
azaozz 2009-10-25 17:30:58 +00:00
parent 7a67d6e60f
commit 791cebe932
6 changed files with 8 additions and 7 deletions

View File

@ -197,6 +197,7 @@ class Blogger_Import {
$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 @@ class Blogger_Import {
}
function _normalize_tag( $matches ) {
return '<' . strtolower( $match[1] );
return '<' . strtolower( $matches[1] );
}
function import_post( $entry ) {

View File

@ -43,7 +43,7 @@ class BW_Import {
}
function _normalize_tag( $matches ) {
return '<' . strtolower( $match[1] );
return '<' . strtolower( $matches[1] );
}
function import_posts() {

View File

@ -325,7 +325,7 @@ class LJ_API_Import {
}
function _normalize_tag( $matches ) {
return '<' . strtolower( $match[1] );
return '<' . strtolower( $matches[1] );
}
function import_post( $post ) {

View File

@ -44,7 +44,7 @@ class RSS_Import {
}
function _normalize_tag( $matches ) {
return '<' . strtolower( $match[1] );
return '<' . strtolower( $matches[1] );
}
function get_posts() {

View File

@ -358,7 +358,7 @@ class WP_Import {
}
function _normalize_tag( $matches ) {
return '<' . strtolower( $match[1] );
return '<' . strtolower( $matches[1] );
}
function process_post($post) {

View File

@ -298,13 +298,13 @@ class WP_Filesystem_ftpsockets extends WP_Filesystem_Base {
$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'] ) {