From 5643e3ca1735eb5c13ce7a2f8e71bf86ac5e4981 Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Tue, 5 Nov 2013 01:26:49 +0000 Subject: [PATCH] Pass `$args` to the `export_wp` action in `export_wp()`, which is currently passed no arguments. Props nickdaugherty. Fixes #25574. git-svn-id: https://develop.svn.wordpress.org/trunk@26011 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/export.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/includes/export.php b/src/wp-admin/includes/export.php index 91d88a18ab..a7f20991e8 100644 --- a/src/wp-admin/includes/export.php +++ b/src/wp-admin/includes/export.php @@ -30,7 +30,7 @@ function export_wp( $args = array() ) { ); $args = wp_parse_args( $args, $defaults ); - do_action( 'export_wp' ); + do_action( 'export_wp', $args ); $sitename = sanitize_key( get_bloginfo( 'name' ) ); if ( ! empty($sitename) ) $sitename .= '.';