summaryrefslogtreecommitdiffstats
path: root/wp-admin/export.php
diff options
context:
space:
mode:
Diffstat (limited to 'wp-admin/export.php')
-rw-r--r--wp-admin/export.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/wp-admin/export.php b/wp-admin/export.php
index 755dba8..300d6c9 100644
--- a/wp-admin/export.php
+++ b/wp-admin/export.php
@@ -27,7 +27,7 @@ function export_wp() {
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header("Content-Disposition: attachment; filename=$filename");
-header('Content-type: text/xml; charset=' . get_settings('blog_charset'), true);
+header('Content-type: text/xml; charset=' . get_option('blog_charset'), true);
//$posts = query_posts('');
$posts = $wpdb->get_results("SELECT * FROM $wpdb->posts ORDER BY post_date_gmt ASC");
?>