From d5f47d78fcb178bdef970f5e591a9761ca32086f Mon Sep 17 00:00:00 2001 From: Jon Cave Date: Tue, 6 Nov 2012 14:51:45 +0000 Subject: [PATCH] Rename filter on $args sent to export_wp() for clarity. See #19863. git-svn-id: https://develop.svn.wordpress.org/trunk@22402 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/export.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/export.php b/wp-admin/export.php index c4f25e442b..fc491b3b3a 100644 --- a/wp-admin/export.php +++ b/wp-admin/export.php @@ -94,7 +94,7 @@ if ( isset( $_GET['download'] ) ) { $args['content'] = $_GET['content']; } - $args = apply_filters( 'wp_export_args', $args ); + $args = apply_filters( 'export_args', $args ); export_wp( $args ); die();