Make WordPress Core


Ignore:
Timestamp:
02/07/2008 07:22:59 PM (17 years ago)
Author:
ryan
Message:

Add post_password to export. Props Nazgul. fixes #4376

File:
1 edited

Legend:

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

    r6726 r6753  
    193193            setup_postdata($post); ?>
    194194<item>
    195 <title><?php the_title_rss() ?></title>
     195<title><?php echo apply_filters('the_title_rss', $post->post_title); ?></title>
    196196<link><?php the_permalink_rss() ?></link>
    197197<pubDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_post_time('Y-m-d H:i:s', true), false); ?></pubDate>
     
    212212<wp:menu_order><?php echo $post->menu_order; ?></wp:menu_order>
    213213<wp:post_type><?php echo $post->post_type; ?></wp:post_type>
     214<wp:post_password><?php echo $post->post_password; ?></wp:post_password>
    214215<?php
    215216if ($post->post_type == 'attachment') { ?>
Note: See TracChangeset for help on using the changeset viewer.