IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
374 | 374 | $this->strings['no_package'] = __('Update package not available.'); |
375 | 375 | $this->strings['downloading_package'] = __('Downloading update from <span class="code">%s</span>…'); |
376 | 376 | $this->strings['unpack_package'] = __('Unpacking the update…'); |
377 | | $this->strings['deactivate_plugin'] = __('Deactivating the plugin…'); |
378 | 377 | $this->strings['remove_old'] = __('Removing the old version of the plugin…'); |
379 | 378 | $this->strings['remove_old_failed'] = __('Could not remove the old plugin.'); |
380 | 379 | $this->strings['process_failed'] = __('Plugin update failed.'); |
… |
… |
|
594 | 593 | return new WP_Error('bad_request', $this->strings['bad_request']); |
595 | 594 | |
596 | 595 | if ( is_plugin_active($plugin) ) { |
597 | | $this->skin->feedback('deactivate_plugin'); |
598 | 596 | //Deactivate the plugin silently, Prevent deactivation hooks from running. |
599 | 597 | deactivate_plugins($plugin, true); |
600 | 598 | } |
… |
… |
|
1106 | 1104 | function after() { |
1107 | 1105 | $this->plugin = $this->upgrader->plugin_info(); |
1108 | 1106 | if ( !empty($this->plugin) && !is_wp_error($this->result) && $this->plugin_active ){ |
1109 | | show_message(__('Reactivating the plugin…')); |
1110 | 1107 | echo '<iframe style="border:0;overflow:hidden" width="100%" height="170px" src="' . wp_nonce_url('update.php?action=activate-plugin&networkwide=' . $this->plugin_network_active . '&plugin=' . $this->plugin, 'activate-plugin_' . $this->plugin) .'"></iframe>'; |
1111 | 1108 | } |
1112 | 1109 | |
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
76 | 76 | die(); |
77 | 77 | } |
78 | 78 | iframe_header( __('Plugin Reactivation'), true ); |
79 | | if ( isset($_GET['success']) ) |
80 | | echo '<p>' . __('Plugin reactivated successfully.') . '</p>'; |
81 | | |
82 | 79 | if ( isset($_GET['failure']) ){ |
83 | 80 | echo '<p>' . __('Plugin failed to reactivate due to a fatal error.') . '</p>'; |
84 | 81 | |