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
This commit is contained in:
Jon Cave 2012-11-06 14:51:45 +00:00
parent 397efc640f
commit d5f47d78fc

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