Make WordPress Core


Ignore:
Timestamp:
08/09/2008 05:36:14 AM (17 years ago)
Author:
ryan
Message:

Trailing whitespace cleanup

File:
1 edited

Legend:

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

    r8550 r8600  
    7575            if( ! current_user_can('delete_plugins') )
    7676                wp_die(__('You do not have sufficient permissions to delete plugins for this blog.'));
    77            
     77
    7878            check_admin_referer('bulk-manage-plugins');
    79            
     79
    8080            $plugins = $_REQUEST['checked']; //$_POST = from the plugin form; $_GET = from the FTP details screen.
    8181            include(ABSPATH . 'wp-admin/update.php');
     
    8383            $title = __('Delete Plugin');
    8484            $parent_file = 'plugins.php';
    85            
     85
    8686            if( ! isset($_REQUEST['verify-delete']) ) {
    8787                wp_enqueue_script('jquery');
     
    8989                ?>
    9090            <div class="wrap">
    91                 <h2><?php _e('Delete Plugin(s)'); ?></h2>       
     91                <h2><?php _e('Delete Plugin(s)'); ?></h2>
    9292                <?php
    9393                    $files_to_delete = $plugin_info = array();
     
    112112                <p>
    113113                    <ul>
    114                         <?php 
     114                        <?php
    115115                        foreach( $plugin_info as $plugin )
    116116                            echo '<li>', sprintf(__('%s by %s'), $plugin['Name'], $plugin['Author']), '</li>';
     
    141141                    ?>
    142142                    </ul>
    143                 </div>             
     143                </div>
    144144            </div>
    145145                <?php
     
    232232    if ( !empty($plugin_data['PluginURI']) && !empty($plugin_data['Name']) )
    233233        $plugin_data['Title'] = '<a href="' . $plugin_data['PluginURI'] . '" title="'.__( 'Visit plugin homepage' ).'">' . $plugin_data['Name'] . '</a>';
    234    
     234
    235235    if ( ! empty($plugin_data['AuthorURI']) )
    236236        $plugin_data['Author'] = '<a href="' . $plugin_data['AuthorURI'] . '" title="'.__( 'Visit author homepage' ).'">' . $plugin_data['Author'] . '</a>';
    237    
     237
    238238    $plugin_data['Description'] = wptexturize( $plugin_data['Description'] );
    239239
     
    299299        <td class='vers'>{$plugin_data['Version']}</td>
    300300        <td class='desc'><p>{$plugin_data['Description']}</p></td>
    301         <td class='togl action-links'>"; 
     301        <td class='togl action-links'>";
    302302        if ( !empty($action_links) )
    303303            echo implode(' | ', $action_links);
    304         echo '</td> 
     304        echo '</td>
    305305    </tr>';
    306306        do_action( 'after_plugin_row', $plugin_file, $plugin_data, $context );
     
    309309    </tbody>
    310310</table>
    311 <?php 
     311<?php
    312312} //End print_plugins_table()
    313313?>
Note: See TracChangeset for help on using the changeset viewer.