Changes in trunk/wp-admin/import.php [3986:3262]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/import.php
r3986 r3262 2 2 require_once ('admin.php'); 3 3 $title = __('Import'); 4 $parent_file = ' edit.php';4 $parent_file = 'import.php'; 5 5 require_once ('admin-header.php'); 6 6 ?> … … 31 31 } else { 32 32 ?> 33 <table class="widefat">33 <table width="100%" cellpadding="3" cellspacing="3"> 34 34 35 35 <?php … … 37 37 foreach ($importers as $id => $data) { 38 38 $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>"; 40 40 41 41 if ($style != '') … … 43 43 echo " 44 44 <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> 47 47 </tr>"; 48 48 }
Note: See TracChangeset
for help on using the changeset viewer.