mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-16 07:35:39 +01:00
Revert [34327] to fix the accidental deletion of some unit tests.
Built from https://develop.svn.wordpress.org/trunk@34328 git-svn-id: http://core.svn.wordpress.org/trunk@34292 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
003edb6ea7
commit
863fd80150
@ -43,21 +43,8 @@ function export_wp( $args = array() ) {
|
|||||||
do_action( 'export_wp', $args );
|
do_action( 'export_wp', $args );
|
||||||
|
|
||||||
$sitename = sanitize_key( get_bloginfo( 'name' ) );
|
$sitename = sanitize_key( get_bloginfo( 'name' ) );
|
||||||
if ( ! empty( $sitename ) ) {
|
if ( ! empty($sitename) ) $sitename .= '.';
|
||||||
$sitename .= '.';
|
$filename = $sitename . 'wordpress.' . date( 'Y-m-d' ) . '.xml';
|
||||||
}
|
|
||||||
$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-Description: File Transfer' );
|
||||||
header( 'Content-Disposition: attachment; filename=' . $filename );
|
header( 'Content-Disposition: attachment; filename=' . $filename );
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.4-alpha-34327';
|
$wp_version = '4.4-alpha-34328';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
Loading…
Reference in New Issue
Block a user