Changeset 15977 for trunk/wp-admin/includes/class-wp-upgrader.php
- Timestamp:
- 10/26/2010 05:18:49 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/class-wp-upgrader.php
r15898 r15977 1047 1047 $update_actions = apply_filters('update_plugin_complete_actions', $update_actions, $this->plugin); 1048 1048 if ( ! empty($update_actions) ) 1049 $this->feedback( '<strong>' . __('Actions:') . '</strong> ' .implode(' | ', (array)$update_actions));1049 $this->feedback(implode(' | ', (array)$update_actions)); 1050 1050 } 1051 1051 … … 1202 1202 $update_actions = apply_filters('update_bulk_plugins_complete_actions', $update_actions, $this->plugin_info); 1203 1203 if ( ! empty($update_actions) ) 1204 $this->feedback( '<strong>' . __('Actions:') . '</strong> ' .implode(' | ', (array)$update_actions));1204 $this->feedback(implode(' | ', (array)$update_actions)); 1205 1205 } 1206 1206 } … … 1233 1233 $update_actions = apply_filters('update_bulk_theme_complete_actions', $update_actions, $this->theme_info); 1234 1234 if ( ! empty($update_actions) ) 1235 $this->feedback( '<strong>' . __('Actions:') . '</strong> ' .implode(' | ', (array)$update_actions));1235 $this->feedback(implode(' | ', (array)$update_actions)); 1236 1236 } 1237 1237 } … … 1301 1301 $install_actions = apply_filters('install_plugin_complete_actions', $install_actions, $this->api, $plugin_file); 1302 1302 if ( ! empty($install_actions) ) 1303 $this->feedback( '<strong>' . __('Actions:') . '</strong> ' .implode(' | ', (array)$install_actions));1303 $this->feedback(implode(' | ', (array)$install_actions)); 1304 1304 } 1305 1305 } … … 1368 1368 $install_actions = apply_filters('install_theme_complete_actions', $install_actions, $this->api, $stylesheet, $theme_info); 1369 1369 if ( ! empty($install_actions) ) 1370 $this->feedback( '<strong>' . __('Actions:') . '</strong> ' .implode(' | ', (array)$install_actions));1370 $this->feedback(implode(' | ', (array)$install_actions)); 1371 1371 } 1372 1372 } … … 1422 1422 $update_actions = apply_filters('update_theme_complete_actions', $update_actions, $this->theme); 1423 1423 if ( ! empty($update_actions) ) 1424 $this->feedback( '<strong>' . __('Actions:') . '</strong> ' .implode(' | ', (array)$update_actions));1424 $this->feedback(implode(' | ', (array)$update_actions)); 1425 1425 } 1426 1426 }
Note: See TracChangeset
for help on using the changeset viewer.