Make WordPress Core


Ignore:
Timestamp:
08/30/2006 09:46:31 PM (20 years ago)
Author:
ryan
Message:

Use get_option instead of get_settings. Just 'cause.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/export.php

    r3769 r4144  
    2929header('Content-Type: application/octet-stream');
    3030header("Content-Disposition: attachment; filename=$filename");
    31 header('Content-type: text/xml; charset=' . get_settings('blog_charset'), true);
     31header('Content-type: text/xml; charset=' . get_option('blog_charset'), true);
    3232//$posts = query_posts('');
    3333$posts = $wpdb->get_results("SELECT * FROM $wpdb->posts ORDER BY post_date_gmt ASC");
Note: See TracChangeset for help on using the changeset viewer.