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
This commit is contained in:
Jon Cave 2012-11-06 14:51:45 +00:00
parent df39c7be71
commit 1049edd0bc
1 changed files with 1 additions and 1 deletions

View File

@ -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();