Changeset 44378

Show
Ignore:
Timestamp:
05/05/08 10:25:38 (3 months ago)
Author:
dd32
Message:
 
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • add-from-server/trunk/add-from-server.php

    r44185 r44378  
    22/* 
    33Plugin Name: Add From Server 
    4 Version: 1.4 
     4Version: 1.3.2 
    55Plugin URI: http://dd32.id.au/wordpress-plugins/add-from-server/ 
    66Description: Plugin to allow the Media Manager to add files from the webservers filesystem. <strong>Note:</strong> All files are copied to the uploads directory. 
     
    9494       
    9595      $return = "<form action='$folderurl$base' method='POST'><table>"; 
    96       $return .= "<tr> 
     96      $return .= "<thead><tr> 
    9797                              <th>" . __('Import', 'add-from-server') . '</th> 
    9898                              <th>' . __('Filename', 'add-from-server') . '</th> 
    99                         </tr>'; 
     99                        </tr></thead>'; 
    100100      $parent = realpath($base . '/..'); 
     101 
     102      $return .= '<tbody>'; 
    101103 
    102104      $return .= "<tr> 
     
    123125      } 
    124126      $return .= '<tr> 
    125                               <th colspan="2" style="text-align: left;"><a href="javascript:checkAll();">' . __('Toggle All', 'add-from-server') . '</a></th> 
     127                              <th colspan="2" style="text-align: left;"><a href="javascript:checkAll(\'#filesystem-list\');">' . __('Toggle All', 'add-from-server') . '</a></th> 
    126128                        </tr>'; 
     129      $return .= '</tbody>'; 
    127130      $return .= '</table>'; 
    128131