Changeset 11186 for trunk/wp-admin/includes/plugin.php
- Timestamp:
- 05/05/2009 02:38:18 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/plugin.php
r11173 r11186 595 595 if ( empty($icon_url) ) 596 596 $icon_url = 'images/generic.png'; 597 elseif ( is_ssl() && 0 === strpos($icon_url, 'http://') ) 598 $icon_url = 'https://' . substr($icon_url, 7); 597 599 598 600 $menu[] = array ( $menu_title, $access_level, $file, $page_title, 'menu-top ' . $hookname, $hookname, $icon_url ); … … 635 637 if ( empty($icon_url) ) 636 638 $icon_url = 'images/generic.png'; 639 elseif ( is_ssl() && 0 === strpos($icon_url, 'http://') ) 640 $icon_url = 'https://' . substr($icon_url, 7); 637 641 638 642 $_wp_last_utility_menu++;
Note: See TracChangeset
for help on using the changeset viewer.