From 6674856a9034e7f073047f6d5fa2ac83c8d8d603 Mon Sep 17 00:00:00 2001 From: ryan Date: Thu, 8 Jan 2009 17:46:48 +0000 Subject: [PATCH] Translate lj user= tags. Props novalis_dt. fixes #5840 git-svn-id: http://svn.automattic.com/wordpress/trunk@10334 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/import/livejournal.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wp-admin/import/livejournal.php b/wp-admin/import/livejournal.php index 6b352e88f..d51b798cd 100644 --- a/wp-admin/import/livejournal.php +++ b/wp-admin/import/livejournal.php @@ -59,6 +59,7 @@ class LJ_Import { if ( empty($post_title) ) { preg_match('|(.*?)|is', $post, $post_title); $post_title = $wpdb->escape(trim($post_title[1])); + $post_content = preg_replace('||', '$1', $post_content); } preg_match('|(.*?)|is', $post, $post_date);