Make WordPress Core


Ignore:
Timestamp:
11/19/2006 07:56:05 AM (18 years ago)
Author:
ryan
Message:

Remove trailing spaces and convert spaces to tabs. Props Nazgul. fixes #986

File:
1 edited

Legend:

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

    r4485 r4495  
    7373
    7474<!-- generator="wordpress/<?php bloginfo_rss('version') ?>" created="<?php echo date('Y-m-d H:m'); ?>"-->
    75 <rss version="2.0" 
     75<rss version="2.0"
    7676    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    7777    xmlns:wfw="http://wellformedweb.org/CommentAPI/"
     
    109109<wp:post_type><?php echo $post->post_type; ?></wp:post_type>
    110110<?php
    111 $postmeta = $wpdb->get_results("SELECT * FROM $wpdb->postmeta WHERE post_id = $post->ID"); 
     111$postmeta = $wpdb->get_results("SELECT * FROM $wpdb->postmeta WHERE post_id = $post->ID");
    112112if ( $postmeta ) {
    113113?>
     
    120120<?php } ?>
    121121<?php
    122 $comments = $wpdb->get_results("SELECT * FROM $wpdb->comments WHERE comment_post_ID = $post->ID"); 
     122$comments = $wpdb->get_results("SELECT * FROM $wpdb->comments WHERE comment_post_ID = $post->ID");
    123123if ( $comments ) { foreach ( $comments as $c ) { ?>
    124124<wp:comment>
Note: See TracChangeset for help on using the changeset viewer.