diff --git a/wp-admin/edit-comments.php b/wp-admin/edit-comments.php
index d8d46da430..a8867315da 100644
--- a/wp-admin/edit-comments.php
+++ b/wp-admin/edit-comments.php
@@ -278,7 +278,7 @@ $page_links = paginate_links( array(
helps) ? attribute_escape($taxonomy->helps) : __('Separate tags with commas.');
?>
-
label) ? attribute_escape($taxonomy->label) : $tax_name;
- add_meta_box('tagsdiv-' . $tax_name, $label, 'post_tags_meta_box', 'post', 'side', 'core');
- }
-}
+ add_meta_box('tagsdiv-' . $tax_name, $label, 'post_tags_meta_box', 'post', 'side', 'core');
+ }
+}
/**
* Display post categories form fields.
diff --git a/wp-admin/import/livejournal.php b/wp-admin/import/livejournal.php
index f008496063..146cf51128 100644
--- a/wp-admin/import/livejournal.php
+++ b/wp-admin/import/livejournal.php
@@ -30,7 +30,7 @@ class LJ_API_Import {
var $postmap;
var $commentmap;
var $pointers = array();
-
+
// This list taken from LJ, they don't appear to have an API for it
var $moods = array( '1' => 'aggravated',
'10' => 'discontent',
@@ -193,7 +193,7 @@ class LJ_API_Import {
-
+
-
+
@@ -221,11 +221,11 @@ class LJ_API_Import {
WARNING: This can take a really long time if you have a lot of entries in your LiveJournal, or a lot of comments. Ideally, you should only start this process if you can leave your computer alone while it finishes the import." ) ?>
-
+
-
+
NOTE: If the import process is interrupted for any reason, come back to this page and it will continue from where it stopped automatically.' ) ?>
@@ -236,7 +236,7 @@ class LJ_API_Import {
lj_ixr( 'syncitems', array( 'ver' => 1, 'lastsync' => $lastsync ) );
if ( is_wp_error( $synclist ) )
return $synclist;
-
+
// Keep track of if we've downloaded everything
$total = $synclist['total'];
$count = $synclist['count'];
-
+
foreach ( $synclist['syncitems'] as $event ) {
if ( substr( $event['item'], 0, 2 ) == 'L-' ) {
$sync_item_times[ str_replace( 'L-', '', $event['item'] ) ] = $event['time'];
@@ -276,7 +276,7 @@ class LJ_API_Import {
echo '' . __( 'Post metadata has been downloaded, proceeding with posts...' ) . '
';
}
-
+
function download_post_bodies() {
$imported_count = (int) get_option( 'ljapi_imported_count' );
$sync_item_times = get_option( 'ljapi_sync_item_times' );
@@ -285,10 +285,10 @@ class LJ_API_Import {
update_option( 'ljapi_lastsync_posts', date( 'Y-m-d H:i:s', 0 ) );
$count = 0;
- echo '';
+ echo '';
do {
$lastsync = date( 'Y-m-d H:i:s', strtotime( get_option( 'ljapi_lastsync_posts' ) ) );
-
+
// Get the batch of items that match up with the syncitems list
$itemlist = $this->lj_ixr( 'getevents', array( 'ver' => 1,
'selecttype' => 'syncitems',
@@ -296,7 +296,7 @@ class LJ_API_Import {
'lastsync' => $lastsync ) );
if ( is_wp_error( $itemlist ) )
return $itemlist;
-
+
if ( $num = count( $itemlist['events'] ) ) {
for ( $e = 0; $e < count( $itemlist['events'] ); $e++ ) {
$event = $itemlist['events'][$e];
@@ -314,23 +314,23 @@ class LJ_API_Import {
}
$count++;
} while ( $num > 0 && $count < 3 ); // Doing up to 3 requests at a time to avoid memory problems
-
+
// Used so that step1 knows when to stop posting back on itself
update_option( 'ljapi_last_sync_count', $num );
-
+
// Counter just used to show progress to user
update_option( 'ljapi_post_batch', ( (int) get_option( 'ljapi_post_batch' ) + 1 ) );
echo ' ';
}
-
+
function import_post( $post ) {
global $wpdb;
-
+
// Make sure we haven't already imported this one
if ( $this->get_wp_post_ID( $post['itemid'] ) )
return;
-
+
$user = wp_get_current_user();
$post_author = $user->ID;
$post['security'] = !empty( $post['security'] ) ? $post['security'] : '';
@@ -341,13 +341,13 @@ class LJ_API_Import {
$post_date = $post['eventtime'];
if ( 18 == strlen( $post_date ) )
$post_date = substr( $post_date, 0, 10 ) . ' ' . substr( $post_date, 10 );
-
+
// Cleaning up and linking the title
$post_title = isset( $post['subject'] ) ? trim( $post['subject'] ) : '';
$post_title = $this->translate_lj_user( $post_title ); // Translate it, but then we'll strip the link
$post_title = strip_tags( $post_title ); // Can't have tags in the title in WP
$post_title = $wpdb->escape( $post_title );
-
+
// Clean up content
$post_content = $post['event'];
$post_content = preg_replace_callback( '|<(/?[A-Z]+)|', create_function( '$match', 'return "<" . strtolower( $match[1] );' ), $post_content );
@@ -363,10 +363,10 @@ class LJ_API_Import {
$post_content = $this->translate_lj_user( $post_content );
$post_content = force_balance_tags( $post_content );
$post_content = $wpdb->escape( $post_content );
-
+
// Handle any tags associated with the post
$tags_input = !empty( $post['props']['taglist'] ) ? $post['props']['taglist'] : '';
-
+
// Check if comments are closed on this post
$comment_status = !empty( $post['props']['opt_nocomments'] ) ? 'closed' : 'open';
@@ -387,25 +387,25 @@ class LJ_API_Import {
echo '';
return new WP_Error( 'insert_post_failed', __( 'Failed to create post.' ) );
}
-
+
// Handle all the metadata for this post
$this->insert_postmeta( $post_id, $post );
}
echo '';
}
-
+
// Convert lj-user tags to links to that user
function translate_lj_user( $str ) {
return preg_replace( '||', '$1 ', $str );
}
-
+
function insert_postmeta( $post_id, $post ) {
// Need the original LJ id for comments
add_post_meta( $post_id, 'lj_itemid', $post['itemid'] );
-
+
// And save the permalink on LJ in case we want to link back or something
add_post_meta( $post_id, 'lj_permalink', $post['url'] );
-
+
// Supports the following "props" from LJ, saved as lj_ in wp_postmeta
// Adult Content - adult_content
// Location - current_coords + current_location
@@ -424,7 +424,7 @@ class LJ_API_Import {
}
}
}
-
+
// Set up a session (authenticate) with LJ
function get_session() {
// Get a session via XMLRPC
@@ -433,18 +433,18 @@ class LJ_API_Import {
return new WP_Error( 'cookie', __( 'Could not get a cookie from LiveJournal. Please try again soon.' ) );
return new WP_Http_Cookie( array( 'name' => 'ljsession', 'value' => $cookie['ljsession'] ) );
}
-
+
// Loops through and gets comment meta from LJ in batches
function download_comment_meta() {
$cookie = $this->get_session();
if ( is_wp_error( $cookie ) )
return $cookie;
-
+
// Load previous state (if any)
$this->usermap = (array) get_option( 'ljapi_usermap' );
$maxid = get_option( 'ljapi_maxid' ) ? get_option( 'ljapi_maxid' ) : 1;
$highest_id = get_option( 'ljapi_highest_id' ) ? get_option( 'ljapi_highest_id' ) : 0;
-
+
// We need to loop over the metadata request until we have it all
while ( $maxid > $highest_id ) {
// Now get the meta listing
@@ -452,9 +452,9 @@ class LJ_API_Import {
array( 'cookies' => array( $cookie ), 'timeout' => 20 ) );
if ( is_wp_error( $results ) )
return new WP_Error( 'comment_meta', __( 'Failed to retrieve comment meta information from LiveJournal. Please try again soon.' ) );
-
+
$results = wp_remote_retrieve_body( $results );
-
+
// Get the maxid so we know if we have them all yet
preg_match( '|(\d+) |', $results, $matches );
if ( 0 == $matches[1] ) {
@@ -465,7 +465,7 @@ class LJ_API_Import {
return false; // Bail out of comment importing entirely
}
$maxid = !empty( $matches[1] ) ? $matches[1] : $maxid;
-
+
// Parse comments and get highest id available
preg_match_all( '| |', $results, $matches );
foreach ( $matches[1] as $count => $userid )
$this->usermap[$userid] = $matches[2][$count]; // need this in memory for translating ids => names
-
+
wp_cache_flush();
}
// endwhile - should have seen all comment meta at this point
@@ -485,12 +485,12 @@ class LJ_API_Import {
update_option( 'ljapi_usermap', $this->usermap );
update_option( 'ljapi_maxid', $maxid );
update_option( 'ljapi_highest_id', $highest_id );
-
+
echo '' . __( ' Comment metadata downloaded successfully, proceeding with comment bodies...' ) . '
';
-
+
return true;
}
-
+
// Downloads actual comment bodies from LJ
// Inserts them all directly to the DB, with additional info stored in "spare" fields
function download_comment_bodies() {
@@ -498,7 +498,7 @@ class LJ_API_Import {
$cookie = $this->get_session();
if ( is_wp_error( $cookie ) )
return $cookie;
-
+
// Load previous state (if any)
$this->usermap = (array) get_option( 'ljapi_usermap' );
$maxid = get_option( 'ljapi_maxid' ) ? (int) get_option( 'ljapi_maxid' ) : 1;
@@ -506,15 +506,15 @@ class LJ_API_Import {
$loop = 0;
while ( $maxid > $highest_id && $loop < 5 ) { // We do 5 loops per call to avoid memory limits
$loop++;
-
+
// Get a batch of comments, using the highest_id we've already got as a starting point
$results = wp_remote_get( $this->comments_url . '?get=comment_body&startid=' . ( $highest_id + 1 ),
array( 'cookies' => array( $cookie ), 'timeout' => 20 ) );
if ( is_wp_error( $results ) )
return new WP_Error( 'comment_bodies', __( 'Failed to retrieve comment bodies from LiveJournal. Please try again soon.' ) );
-
+
$results = wp_remote_retrieve_body( $results );
-
+
// Parse out each comment and insert directly
preg_match_all( '|