Make WordPress Core

Ticket #6557: 6557.diff

File 6557.diff, 1.2 KB (added by MtDewVirus, 18 years ago)
  • wp-admin/import/wordpress.php

     
    3535
    3636        function greet() {
    3737                echo '<div class="narrow">';
    38                 echo '<p>'.__('Howdy! Upload your WordPress eXtended RSS (WXR) file and we&#8217;ll import the posts, comments, custom fields, and categories into this blog.').'</p>';
     38                echo '<p>'.__('Howdy! Upload your WordPress eXtended RSS (WXR) file and we&#8217;ll import the posts, pages, comments, custom fields, categories, and tags into this blog.').'</p>';
    3939                echo '<p>'.__('Choose a WordPress WXR file to upload, then click Upload file and import.').'</p>';
    4040                wp_import_upload_form("admin.php?import=wordpress&amp;step=1");
    4141                echo '</div>';
     
    743743
    744744$wp_import = new WP_Import();
    745745
    746 register_importer('wordpress', 'WordPress', __('Import <strong>posts, comments, custom fields, pages, and categories</strong> from a WordPress export file.'), array ($wp_import, 'dispatch'));
     746register_importer('wordpress', 'WordPress', __('Import <strong>posts, pages, comments, custom fields, categories, and tags</strong> from a WordPress export file.'), array ($wp_import, 'dispatch'));
    747747
    748748?>