Make WordPress Core


Ignore:
Timestamp:
03/02/2008 08:17:30 PM (17 years ago)
Author:
ryan
Message:

Remove trailing whites.

File:
1 edited

Legend:

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

    r7062 r7130  
    22require_once('admin.php');
    33
    4 if (!current_user_can('upload_files')) 
    5     wp_die(__('You do not have permission to upload files.')); 
     4if (!current_user_can('upload_files'))
     5    wp_die(__('You do not have permission to upload files.'));
    66
    77// Handle bulk deletes
     
    2727} elseif ( !empty($_GET['_wp_http_referer']) ) {
    2828    wp_redirect(remove_query_arg(array('_wp_http_referer', '_wpnonce'), stripslashes($_SERVER['REQUEST_URI'])));
    29     exit; 
     29    exit;
    3030}
    3131
     
    155155        continue;
    156156    $arc_row->mmonth = zeroise( $arc_row->mmonth, 2 );
    157    
     157
    158158    if ( $arc_row->yyear . $arc_row->mmonth == $_GET['m'] )
    159159        $default = ' selected="selected"';
    160160    else
    161161        $default = '';
    162    
     162
    163163    echo "<option$default value='$arc_row->yyear$arc_row->mmonth'>";
    164164    echo $wp_locale->get_month($arc_row->mmonth) . " $arc_row->yyear";
Note: See TracChangeset for help on using the changeset viewer.