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-includes/widgets.php

    r8572 r8600  
    167167function wp_register_widget_control($id, $name, $control_callback, $options = array()) {
    168168    global $wp_registered_widget_controls;
    169    
     169
    170170    $id = strtolower($id);
    171171
     
    463463    extract($args);
    464464    $searchform_template = get_template_directory() . '/searchform.php';
    465    
     465
    466466    echo $before_widget;
    467    
     467
    468468    // Use current theme search form if it exists
    469469    if ( file_exists($searchform_template) ) {
     
    476476        </div></form>
    477477    <?php }
    478    
     478
    479479    echo $after_widget;
    480480}
     
    744744?>
    745745        <ul>
    746         <?php 
     746        <?php
    747747            $cat_args['title_li'] = '';
    748             wp_list_categories($cat_args); 
     748            wp_list_categories($cat_args);
    749749        ?>
    750750        </ul>
Note: See TracChangeset for help on using the changeset viewer.