Changeset 45881 for trunk/src/wp-admin/includes/update.php
- Timestamp:
- 08/22/2019 07:07:57 PM (7 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/includes/update.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/update.php
r45599 r45881 358 358 $plugins = array_keys( $plugins->response ); 359 359 foreach ( $plugins as $plugin_file ) { 360 add_action( "after_plugin_row_ $plugin_file", 'wp_plugin_update_row', 10, 2 );360 add_action( "after_plugin_row_{$plugin_file}", 'wp_plugin_update_row', 10, 2 ); 361 361 } 362 362 } … … 546 546 547 547 foreach ( $themes as $theme ) { 548 add_action( "after_theme_row_ $theme", 'wp_theme_update_row', 10, 2 );548 add_action( "after_theme_row_{$theme}", 'wp_theme_update_row', 10, 2 ); 549 549 } 550 550 }
Note: See TracChangeset
for help on using the changeset viewer.