Inline documentation for hooks in wp-admin/network/site-settings.php.

Props admiralthrawn.
Fixes #25725.


git-svn-id: https://develop.svn.wordpress.org/trunk@25952 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Drew Jaynes 2013-10-27 20:04:16 +00:00
parent eaedc9b427
commit 4b1e151b04
1 changed files with 12 additions and 0 deletions

View File

@ -58,6 +58,11 @@ if ( isset($_REQUEST['action']) && 'update-site' == $_REQUEST['action'] && is_ar
update_option( $key, $val );
}
/**
* Fires after network options are updated.
*
* @since 3.0.0
*/
do_action( 'wpmu_update_blog_options' );
restore_current_blog();
wp_redirect( add_query_arg( array( 'update' => 'updated', 'id' => $id ), 'site-settings.php') );
@ -144,6 +149,13 @@ if ( ! empty( $messages ) ) {
<?php
}
} // End foreach
/**
* Fires at the end of the Edit Site form, before the submit button.
*
* @since 3.0.0
*
* @param int $id Site ID.
*/
do_action( 'wpmueditblogaction', $id );
?>
</table>