Make WordPress Core


Ignore:
Timestamp:
03/18/2009 02:43:45 AM (17 years ago)
Author:
ryan
Message:

Trim trailing whitespace

File:
1 edited

Legend:

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

    r10788 r10810  
    1919    'tags' => true, 'num_ratings' => true
    2020);
    21  
     21
    2222
    2323/**
     
    303303<p><strong><?php _e('Version:') ?></strong> <?php echo wp_kses($theme->version, $themes_allowedtags) ?></p>
    304304<p><strong><?php _e('Author:') ?></strong> <?php echo wp_kses($theme->author, $themes_allowedtags) ?></p>
    305 <?php if ( ! empty($theme->last_updated) ) : ?> 
     305<?php if ( ! empty($theme->last_updated) ) : ?>
    306306<p><strong><?php _e('Last Updated:') ?></strong> <span title="<?php echo $theme->last_updated ?>"><?php printf( __('%s ago'), human_time_diff(strtotime($theme->last_updated)) ) ?></span></p>
    307 <?php endif; if ( ! empty($theme->requires) ) : ?>           
    308 <p><strong><?php _e('Requires WordPress Version:') ?></strong> <?php printf(__('%s or higher'), $theme->requires) ?></p>         
    309 <?php endif; if ( ! empty($theme->tested) ) : ?>         
    310 <p><strong><?php _e('Compatible up to:') ?></strong> <?php echo $theme->tested ?></p>           
     307<?php endif; if ( ! empty($theme->requires) ) : ?>
     308<p><strong><?php _e('Requires WordPress Version:') ?></strong> <?php printf(__('%s or higher'), $theme->requires) ?></p>
     309<?php endif; if ( ! empty($theme->tested) ) : ?>
     310<p><strong><?php _e('Compatible up to:') ?></strong> <?php echo $theme->tested ?></p>
    311311<?php endif; if ( !empty($theme->downloaded) ) : ?>
    312312<p><strong><?php _e('Downloaded:') ?></strong> <?php printf(_n('%s time', '%s times', $theme->downloaded), number_format_i18n($theme->downloaded)) ?></p>
     
    844844        return new WP_Error('install_folder_exists', __('Folder already exists.'), $filelist[0] );
    845845    }
    846    
     846
    847847    apply_filters('install_feedback', __('Installing the theme'));
    848848    // Copy new version of theme into place.
Note: See TracChangeset for help on using the changeset viewer.