Changeset 11450 for trunk/wp-admin/includes/plugin.php
- Timestamp:
- 05/24/2009 11:47:49 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/plugin.php
r11207 r11450 469 469 470 470 // Force refresh of plugin update information 471 if ( $current = get_transient('update_plugins') ) { 471 if ( $current = get_transient('update_plugins') ) { 472 472 unset( $current->response[ $plugin_file ] ); 473 473 set_transient('update_plugins', $current); … … 599 599 $icon_url = 'images/generic.png'; 600 600 elseif ( is_ssl() && 0 === strpos($icon_url, 'http://') ) 601 $icon_url = 'https://' . substr($icon_url, 7); 601 $icon_url = 'https://' . substr($icon_url, 7); 602 602 603 603 $menu[] = array ( $menu_title, $access_level, $file, $page_title, 'menu-top ' . $hookname, $hookname, $icon_url ); … … 641 641 $icon_url = 'images/generic.png'; 642 642 elseif ( is_ssl() && 0 === strpos($icon_url, 'http://') ) 643 $icon_url = 'https://' . substr($icon_url, 7); 643 $icon_url = 'https://' . substr($icon_url, 7); 644 644 645 645 $_wp_last_utility_menu++;
Note: See TracChangeset
for help on using the changeset viewer.