Changeset 32504 for trunk/src/wp-admin/includes/plugin.php
- Timestamp:
- 05/14/2015 06:57:47 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/plugin.php
r32340 r32504 577 577 578 578 if ( $network_wide ) { 579 $current = get_site_option( 'active_sitewide_plugins', array() ); 579 580 $current[$plugin] = time(); 580 581 update_site_option( 'active_sitewide_plugins', $current ); 581 582 } else { 583 $current = get_option( 'active_plugins', array() ); 582 584 $current[] = $plugin; 583 585 sort($current);
Note: See TracChangeset
for help on using the changeset viewer.