diff -ur wordpress/wp-includes/template-functions-general.php /www/jay/wp-includes/template-functions-general.php
--- wordpress/wp-includes/template-functions-general.php	2005-02-14 18:50:23.000000000 -0600
+++ /www/jay/wp-includes/template-functions-general.php	2005-04-27 21:44:04.000817206 -0500
@@ -607,11 +607,11 @@
 	echo apply_filters('the_time', get_the_time( $d ), $d);
 }
 
-function get_the_time( $d = '' ) {
+function get_the_time( $d = '', $gmt = false) {
 	if ( '' == $d )
 		$the_time = get_post_time(get_settings('time_format'));
 	else
-		$the_time = get_post_time($d);
+		$the_time = get_post_time($d, $gmt);
 	return apply_filters('get_the_time', $the_time, $d);
 }
 
diff -ur wordpress/wp-rss2.php /www/jay/wp-rss2.php
--- wordpress/wp-rss2.php	2005-02-13 22:17:12.000000000 -0600
+++ /www/jay/wp-rss2.php	2005-04-27 21:45:02.000537752 -0500
@@ -33,7 +33,7 @@
 		<title><?php the_title_rss() ?></title>
 		<link><?php permalink_single_rss() ?></link>
 		<comments><?php comments_link(); ?></comments>
-		<pubDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_the_time('Y-m-d H:i:s')); ?></pubDate>
+		<pubDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_the_time('Y-m-d H:i:s', true)); ?></pubDate>
 		<dc:creator><?php the_author() ?></dc:creator>
 		<?php the_category_rss() ?>
 
