From 1de240d5a2a14fc5274f2321a88097a5cbf10cf8 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 16 Sep 2013 18:30:10 +0000 Subject: [PATCH] Inline documentation for hooks in wp-includes/load.php. props mordauk. see #25229. Built from https://develop.svn.wordpress.org/trunk@25455 git-svn-id: http://core.svn.wordpress.org/trunk@25376 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/load.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/wp-includes/load.php b/wp-includes/load.php index ae69b5c42a..e589f5fa5a 100644 --- a/wp-includes/load.php +++ b/wp-includes/load.php @@ -572,6 +572,11 @@ function wp_magic_quotes() { * @since 1.2.0 */ function shutdown_action_hook() { + /** + * Fires just before PHP shuts down execution. + * + * @since 1.2.0 + */ do_action( 'shutdown' ); wp_cache_close(); }