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:
@@ -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 ) {
|
||||
|
||||
@@ -43,7 +43,7 @@ class BW_Import {
|
||||
}
|
||||
|
||||
function _normalize_tag( $matches ) {
|
||||
return '<' . strtolower( $match[1] );
|
||||
return '<' . strtolower( $matches[1] );
|
||||
}
|
||||
|
||||
function import_posts() {
|
||||
|
||||
@@ -325,7 +325,7 @@ class LJ_API_Import {
|
||||
}
|
||||
|
||||
function _normalize_tag( $matches ) {
|
||||
return '<' . strtolower( $match[1] );
|
||||
return '<' . strtolower( $matches[1] );
|
||||
}
|
||||
|
||||
function import_post( $post ) {
|
||||
|
||||
@@ -44,7 +44,7 @@ class RSS_Import {
|
||||
}
|
||||
|
||||
function _normalize_tag( $matches ) {
|
||||
return '<' . strtolower( $match[1] );
|
||||
return '<' . strtolower( $matches[1] );
|
||||
}
|
||||
|
||||
function get_posts() {
|
||||
|
||||
@@ -358,7 +358,7 @@ class WP_Import {
|
||||
}
|
||||
|
||||
function _normalize_tag( $matches ) {
|
||||
return '<' . strtolower( $match[1] );
|
||||
return '<' . strtolower( $matches[1] );
|
||||
}
|
||||
|
||||
function process_post($post) {
|
||||
|
||||
Reference in New Issue
Block a user