Changeset 12848 for trunk/wp-includes/update.php
- Timestamp:
- 01/26/2010 06:39:12 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/update.php
r12673 r12848 113 113 114 114 $plugins = get_plugins(); 115 $active = get_option( 'active_plugins' );115 $active = get_option( 'active_plugins', array() ); 116 116 $current = get_site_transient( 'update_plugins' ); 117 117 if ( ! is_object($current) ) … … 148 148 set_site_transient( 'update_plugins', $current ); 149 149 150 $to_send = (object) compact('plugins', 'active');150 $to_send = (object) compact('plugins', 'active'); 151 151 152 152 $options = array(
Note: See TracChangeset
for help on using the changeset viewer.