Changeset 7104 for trunk/wp-admin/import/livejournal.php
- Timestamp:
- 02/29/2008 05:09:44 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/import/livejournal.php
r7072 r7104 67 67 echo '<li>'; 68 68 if ($post_id = post_exists($post_title, $post_content, $post_date)) { 69 printf(__('Post < i>%s</i> already exists.'), stripslashes($post_title));69 printf(__('Post <em>%s</em> already exists.'), stripslashes($post_title)); 70 70 } else { 71 printf(__('Importing post < i>%s</i>...'), stripslashes($post_title));71 printf(__('Importing post <em>%s</em>...'), stripslashes($post_title)); 72 72 $postdata = compact('post_author', 'post_date', 'post_content', 'post_title', 'post_status'); 73 73 $post_id = wp_insert_post($postdata);
Note: See TracChangeset
for help on using the changeset viewer.