Make WordPress Core


Ignore:
Timestamp:
04/20/2009 06:18:39 PM (16 years ago)
Author:
ryan
Message:

Trailing whitespace cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/theme-install.php

    r11005 r11013  
    404404    $rows = ceil(count($themes) / 3);
    405405    $table = array();
    406     $theme_keys = array_keys($themes); 
    407     for ( $row = 1; $row <= $rows; $row++ ) 
    408         for ( $col = 1; $col <= 3; $col++ ) 
    409             $table[$row][$col] = array_shift($theme_keys); 
     406    $theme_keys = array_keys($themes);
     407    for ( $row = 1; $row <= $rows; $row++ )
     408        for ( $col = 1; $col <= 3; $col++ )
     409            $table[$row][$col] = array_shift($theme_keys);
    410410
    411411    foreach ( $table as $row => $cols ) {
     
    422422        ?>
    423423        <td class="<?php echo join(' ', $class); ?>"><?php
    424             if ( isset($themes[$theme_index]) ) 
    425                 display_theme($themes[$theme_index]); 
     424            if ( isset($themes[$theme_index]) )
     425                display_theme($themes[$theme_index]);
    426426        ?></td>
    427427        <?php } // end foreach $cols ?>
Note: See TracChangeset for help on using the changeset viewer.