Changeset 3517 for trunk/wp-admin/plugins.php
- Timestamp:
- 02/12/2006 07:53:23 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/plugins.php
r3479 r3517 4 4 if ( isset($_GET['action']) ) { 5 5 check_admin_referer(); 6 6 7 7 if ('activate' == $_GET['action']) { 8 8 $current = get_settings('active_plugins'); … … 37 37 if ( !is_array($check_plugins) ) { 38 38 $check_plugins = array(); 39 update_option('active_plugins', $check_plugins); 39 update_option('active_plugins', $check_plugins); 40 40 } 41 41 … … 92 92 return strnatcasecmp($plug1['Name'], $plug2['Name']); 93 93 } 94 94 95 95 uksort($plugins, 'sort_plugins'); 96 96
Note: See TracChangeset
for help on using the changeset viewer.