Make WordPress Core


Ignore:
File:
1 edited

Legend:

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

    r3986 r3262  
    22require_once ('admin.php');
    33$title = __('Import');
    4 $parent_file = 'edit.php';
     4$parent_file = 'import.php';
    55require_once ('admin-header.php');
    66?>
     
    3131} else {
    3232?>
    33 <table class="widefat">
     33<table width="100%" cellpadding="3" cellspacing="3">
    3434
    3535<?php
     
    3737    foreach ($importers as $id => $data) {
    3838        $style = ('class="alternate"' == $style || 'class="alternate active"' == $style) ? '' : 'alternate';
    39         $action = "<a href='admin.php?import=$id' title='".wptexturize(strip_tags($data[1]))."'>{$data[0]}</a>";
     39        $action = "<a href='admin.php?import=$id' title='{$data[1]}'>{$data[0]}</a>";
    4040
    4141        if ($style != '')
     
    4343        echo "
    4444            <tr $style>
    45                 <td class='import-system'>$action</td>
    46                 <td class='desc'>{$data[1]}</td>
     45                <td class=\"togl\">$action</td>
     46                <td class=\"desc\">{$data[1]}</td>
    4747            </tr>";
    4848    }
Note: See TracChangeset for help on using the changeset viewer.