From 752808cbd3f2c7f23b21636ca5234e09871eda3a Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Sun, 19 Dec 2010 20:56:38 +0000 Subject: [PATCH] Fix name attribute in export. props ocean90, see [16975], fixes #15901. git-svn-id: https://develop.svn.wordpress.org/trunk@17063 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/export.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/export.php b/wp-admin/export.php index ce76af4773..b765fa02f5 100644 --- a/wp-admin/export.php +++ b/wp-admin/export.php @@ -170,7 +170,7 @@ function export_date_options() { get_col( "SELECT DISTINCT post_author FROM {$wpdb->posts} WHERE post_type = 'page'" ); - wp_dropdown_users( array( 'include' => $authors, 'name' => 'post_author', 'multi' => true, 'show_option_all' => __('All') ) ); + wp_dropdown_users( array( 'include' => $authors, 'name' => 'page_author', 'multi' => true, 'show_option_all' => __('All') ) ); ?>