Ticket #25991: wp-admin_update-core-php.diff
| File wp-admin_update-core-php.diff, 1.0 KB (added by , 13 years ago) |
|---|
-
wp-admin/update-core.php
515 515 if ( $core || $plugins || $themes ) 516 516 list_translation_updates(); 517 517 unset( $core, $plugins, $themes ); 518 519 /** 520 * Fires after the core, plugin and theme update forms 521 * 522 * @since 2.9.0 523 */ 518 524 do_action('core_upgrade_preamble'); 519 525 echo '</div>'; 520 526 include(ABSPATH . 'wp-admin/admin-footer.php'); … … 623 629 require_once( ABSPATH . 'wp-admin/admin-footer.php' ); 624 630 625 631 } else { 632 633 /** 634 * Fires when none of the default conditions matches the action 635 * parameter in the url 636 * 637 * The dynamic portion of the hook name, $action, refers to the action 638 * paremeter in the url. 639 * 640 * @since 3.2.0 641 */ 626 642 do_action('update-core-custom_' . $action); 627 } 643 } 644 No newline at end of file