Make WordPress Core


Ignore:
Timestamp:
05/24/2009 11:47:49 PM (16 years ago)
Author:
ryan
Message:

Trim tailing whitespace

File:
1 edited

Legend:

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

    r11207 r11450  
    469469
    470470    // Force refresh of plugin update information
    471     if ( $current = get_transient('update_plugins') ) { 
     471    if ( $current = get_transient('update_plugins') ) {
    472472        unset( $current->response[ $plugin_file ] );
    473473        set_transient('update_plugins', $current);
     
    599599        $icon_url = 'images/generic.png';
    600600    elseif ( is_ssl() && 0 === strpos($icon_url, 'http://') )
    601         $icon_url = 'https://' . substr($icon_url, 7); 
     601        $icon_url = 'https://' . substr($icon_url, 7);
    602602
    603603    $menu[] = array ( $menu_title, $access_level, $file, $page_title, 'menu-top ' . $hookname, $hookname, $icon_url );
     
    641641        $icon_url = 'images/generic.png';
    642642    elseif ( is_ssl() && 0 === strpos($icon_url, 'http://') )
    643         $icon_url = 'https://' . substr($icon_url, 7); 
     643        $icon_url = 'https://' . substr($icon_url, 7);
    644644
    645645    $_wp_last_utility_menu++;
Note: See TracChangeset for help on using the changeset viewer.