Make WordPress Core


Ignore:
Timestamp:
05/26/2010 02:42:15 AM (15 years ago)
Author:
ryan
Message:

Strip trailing whitespace

File:
1 edited

Legend:

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

    r14794 r14924  
    4949    foreach ( $monthyears as $k => $monthyear )
    5050        $monthyears[$k]->lmonth = $wp_locale->get_month( $monthyear->month, 2 );
    51     for( $s = 0, $e = count( $monthyears ) - 1; $e >= 0; $s++, $e-- ) { 
     51    for( $s = 0, $e = count( $monthyears ) - 1; $e >= 0; $s++, $e-- ) {
    5252        $dateoptions .= "\t<option value=\"" . $monthyears[$s]->year . '-' . zeroise( $monthyears[$s]->month, 2 ) . '">' . $monthyears[$s]->lmonth . ' ' . $monthyears[$s]->year . "</option>\n";
    5353        $edateoptions .= "\t<option value=\"" . $monthyears[$e]->eyear . '-' . zeroise( $monthyears[$e]->emonth, 2 ) . '">' . $monthyears[$e]->lmonth . ' ' . $monthyears[$e]->year . "</option>\n";
Note: See TracChangeset for help on using the changeset viewer.