Make WordPress Core


Ignore:
Timestamp:
02/12/2006 07:53:23 AM (19 years ago)
Author:
ryan
Message:

Death to trailing tabs. Props Mark J. fixes #2405

File:
1 edited

Legend:

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

    r3513 r3517  
    9494    <select name='m'>
    9595    <?php
    96         foreach ($arc_result as $arc_row) {         
     96        foreach ($arc_result as $arc_row) {
    9797            $arc_year  = $arc_row->yyear;
    9898            $arc_month = $arc_row->mmonth;
    99            
     99
    100100            if( isset($_GET['m']) && $arc_year . zeroise($arc_month, 2) == (int) $_GET['m'] )
    101101                $default = 'selected="selected"';
    102102            else
    103103                $default = null;
    104            
     104
    105105            echo "<option $default value=\"" . $arc_year.zeroise($arc_month, 2) . '">';
    106106            echo $month[zeroise($arc_month, 2)] . " $arc_year";
     
    158158
    159159    switch($column_name) {
    160    
     160
    161161    case 'id':
    162162        ?>
Note: See TracChangeset for help on using the changeset viewer.