Make WordPress Core


Ignore:
Timestamp:
02/29/2008 05:09:44 PM (17 years ago)
Author:
ryan
Message:

Update deprecated attributes. Props hansengel. fixes #6037

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/import/livejournal.php

    r7072 r7104  
    6767            echo '<li>';
    6868            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));
    7070            } else {
    71                 printf(__('Importing post <i>%s</i>...'), stripslashes($post_title));
     71                printf(__('Importing post <em>%s</em>...'), stripslashes($post_title));
    7272                $postdata = compact('post_author', 'post_date', 'post_content', 'post_title', 'post_status');
    7373                $post_id = wp_insert_post($postdata);
Note: See TracChangeset for help on using the changeset viewer.