From 1e7832cc3b9e6aacfb7e6291ef37db984c2c8283 Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Sat, 19 Sep 2015 17:45:46 +0000 Subject: [PATCH] Revert [34327] to fix the accidental deletion of some unit tests. git-svn-id: https://develop.svn.wordpress.org/trunk@34328 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/export.php | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/src/wp-admin/includes/export.php b/src/wp-admin/includes/export.php index 3acd7fdc3e..4fcf253306 100644 --- a/src/wp-admin/includes/export.php +++ b/src/wp-admin/includes/export.php @@ -43,21 +43,8 @@ function export_wp( $args = array() ) { do_action( 'export_wp', $args ); $sitename = sanitize_key( get_bloginfo( 'name' ) ); - if ( ! empty( $sitename ) ) { - $sitename .= '.'; - } - $date = date( 'Y-m-d' ); - $wp_filename = $sitename . 'wordpress.' . $date . '.xml'; - /** - * Filter the export filename. - * - * @since 4.4.0 - * - * @param string $wp_filename The name of the file for download. - * @param string $sitename The site name. - * @param string $date Today's date, formatted. - */ - $filename = apply_filters( 'export_wp_filename', $wp_filename, $sitename, $date ); + if ( ! empty($sitename) ) $sitename .= '.'; + $filename = $sitename . 'wordpress.' . date( 'Y-m-d' ) . '.xml'; header( 'Content-Description: File Transfer' ); header( 'Content-Disposition: attachment; filename=' . $filename );