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

    r7072 r7104  
    382382        if ( $post_exists ) {
    383383            echo '<li>';
    384             printf(__('Post <i>%s</i> already exists.'), stripslashes($post_title));
     384            printf(__('Post <em>%s</em> already exists.'), stripslashes($post_title));
    385385        } else {
    386386
     
    413413            }
    414414            else {
    415                 printf(__('Importing post <i>%s</i>...'), stripslashes($post_title));
     415                printf(__('Importing post <em>%s</em>...'), stripslashes($post_title));
    416416                $comment_post_ID = $post_id = wp_insert_post($postdata);
    417417            }
     
    517517    function process_attachment($postdata, $remote_url) {
    518518        if ($this->fetch_attachments and $remote_url) {
    519             printf( __('Importing attachment <i>%s</i>... '), htmlspecialchars($remote_url) );
     519            printf( __('Importing attachment <em>%s</em>... '), htmlspecialchars($remote_url) );
    520520            $upload = $this->fetch_remote_file($postdata, $remote_url);
    521521            if ( is_wp_error($upload) ) {
     
    552552        }
    553553        else {
    554             printf( __('Skipping attachment <i>%s</i>'), htmlspecialchars($remote_url) );
     554            printf( __('Skipping attachment <em>%s</em>'), htmlspecialchars($remote_url) );
    555555        }
    556556    }
Note: See TracChangeset for help on using the changeset viewer.