Ticket #25723: 25723.2.diff
| File 25723.2.diff, 678 bytes (added by , 13 years ago) |
|---|
-
src/wp-admin/update.php
252 252 include(ABSPATH . 'wp-admin/admin-footer.php'); 253 253 254 254 } else { 255 do_action('update-custom_' . $action); 255 /** 256 * Fires when a custom update request is received. 257 * 258 * The dynamic portion of the hook name, $action, refers to the action 259 * provided in the request for wp-admin/update.php. Can be used to 260 * provide custom update functionality for themes and plugins. 261 * 262 * @since 2.8.0 263 */ 264 do_action( "update-custom_{$action}" ); 256 265 } 257 266 }