From 1049edd0bc427ab35188d4aac60193b06fb1c934 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: http://core.svn.wordpress.org/trunk@22402 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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();