X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/6c8f14c09105d0afa4c1574215c59b5021040e76..9e77185fafaf4e60e2b73821e0e4b9b1a11fb85f:/wp-admin/export.php diff --git a/wp-admin/export.php b/wp-admin/export.php index fc491b3b..1ad91a06 100644 --- a/wp-admin/export.php +++ b/wp-admin/export.php @@ -7,13 +7,13 @@ */ /** Load WordPress Bootstrap */ -require_once ('admin.php'); +require_once( dirname( __FILE__ ) . '/admin.php' ); if ( !current_user_can('export') ) wp_die(__('You do not have sufficient permissions to export the content of this site.')); /** Load WordPress export API */ -require_once('./includes/export.php'); +require_once( ABSPATH . 'wp-admin/includes/export.php' ); $title = __('Export'); /** @@ -53,7 +53,7 @@ get_current_screen()->add_help_tab( array( get_current_screen()->set_help_sidebar( '

' . __('For more information:') . '

' . '

' . __('Documentation on Export') . '

' . - '

' . __('Support Forums') . '

' + '

' . __('Support Forums') . '

' ); if ( isset( $_GET['download'] ) ) { @@ -94,14 +94,31 @@ if ( isset( $_GET['download'] ) ) { $args['content'] = $_GET['content']; } + /** + * Filter the export args. + * + * @since 3.5.0 + * + * @param array $args The arguments to send to the exporter. + */ $args = apply_filters( 'export_args', $args ); export_wp( $args ); die(); } -require_once ('admin-header.php'); +require_once( ABSPATH . 'wp-admin/admin-header.php' ); +/** + * Create the date options fields for exporting a given post type. + * + * @global wpdb $wpdb WordPress database object. + * @global WP_Locale $wp_locale Date and Time Locale object. + * + * @since 3.1.0 + * + * @param string $post_type The post type. Default 'post'. + */ function export_date_options( $post_type = 'post' ) { global $wpdb, $wp_locale; @@ -127,7 +144,6 @@ function export_date_options( $post_type = 'post' ) { ?>
-

@@ -211,10 +227,17 @@ function export_date_options( $post_type = 'post' ) {

- +
- +