Reinstate [34327]. minus the unit test deletion.
Built from https://develop.svn.wordpress.org/trunk@34329 git-svn-id: http://core.svn.wordpress.org/trunk@34293 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
863fd80150
commit
fc8c624a61
|
@ -43,8 +43,21 @@ function export_wp( $args = array() ) {
|
|||
do_action( 'export_wp', $args );
|
||||
|
||||
$sitename = sanitize_key( get_bloginfo( 'name' ) );
|
||||
if ( ! empty($sitename) ) $sitename .= '.';
|
||||
$filename = $sitename . 'wordpress.' . date( 'Y-m-d' ) . '.xml';
|
||||
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 );
|
||||
|
||||
header( 'Content-Description: File Transfer' );
|
||||
header( 'Content-Disposition: attachment; filename=' . $filename );
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.4-alpha-34328';
|
||||
$wp_version = '4.4-alpha-34329';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue