Changeset 4334
- Timestamp:
- 11/04/2012 08:56:57 PM (13 years ago)
- File:
-
- 1 edited
-
trunk/includes/core/update.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/core/update.php
r4310 r4334 64 64 65 65 // The plugin(s) being activated 66 if ( $action == 'activate' ) 66 if ( $action == 'activate' ) { 67 67 $plugins = isset( $_GET['plugin'] ) ? array( $_GET['plugin'] ) : array(); 68 else68 } else { 69 69 $plugins = isset( $_POST['checked'] ) ? (array) $_POST['checked'] : array(); 70 } 70 71 71 72 // Set basename if empty … … 101 102 102 103 // The plugin(s) being deactivated 103 if ( $action == 'deactivate' ) 104 if ( $action == 'deactivate' ) { 104 105 $plugins = isset( $_GET['plugin'] ) ? array( $_GET['plugin'] ) : array(); 105 else106 } else { 106 107 $plugins = isset( $_POST['checked'] ) ? (array) $_POST['checked'] : array(); 108 } 107 109 108 110 // Set basename if empty
Note: See TracChangeset
for help on using the changeset viewer.