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/blogware.php

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