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