Changeset 44973 for trunk/src/wp-admin/plugins.php
- Timestamp:
- 03/21/2019 09:52:07 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/plugins.php
r44717 r44973 390 390 break; 391 391 392 case 'resume': 393 if ( is_multisite() ) { 394 return; 395 } 396 397 if ( ! current_user_can( 'resume_plugin', $plugin ) ) { 398 wp_die( __( 'Sorry, you are not allowed to resume this plugin.' ) ); 399 } 400 401 check_admin_referer( 'resume-plugin_' . $plugin ); 402 403 $result = resume_plugin( $plugin, self_admin_url( "plugins.php?error=resuming&plugin_status=$status&paged=$page&s=$s" ) ); 404 405 if ( is_wp_error( $result ) ) { 406 wp_die( $result ); 407 } 408 409 wp_redirect( self_admin_url( "plugins.php?resume=true&plugin_status=$status&paged=$page&s=$s" ) ); 410 exit; 411 392 412 default: 393 413 if ( isset( $_POST['checked'] ) ) { … … 489 509 ); 490 510 $errmsg .= ' ' . __( 'If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.' ); 511 } elseif ( 'resuming' === $_GET['error'] ) { 512 $errmsg = __( 'Plugin could not be resumed because it triggered a <strong>fatal error</strong>.' ); 491 513 } else { 492 514 $errmsg = __( 'Plugin could not be activated because it triggered a <strong>fatal error</strong>.' ); … … 542 564 <?php elseif ( 'update-selected' == $action ) : ?> 543 565 <div id="message" class="updated notice is-dismissible"><p><?php _e( 'All selected plugins are up to date.' ); ?></p></div> 566 <?php elseif ( isset( $_GET['resume'] ) ) : ?> 567 <div id="message" class="updated notice is-dismissible"><p><?php _e( 'Plugin <strong>resumed</strong>.' ); ?></p></div> 544 568 <?php endif; ?> 545 569
Note: See TracChangeset
for help on using the changeset viewer.