Index: trunk/wp-content/plugins/xpressme/include/custom_functions.php
===================================================================
--- trunk/wp-content/plugins/xpressme/include/custom_functions.php	(revision 223)
+++ trunk/wp-content/plugins/xpressme/include/custom_functions.php	(revision 225)
@@ -1,4 +1,4 @@
 <?php
-function xpress_the_title($show = false)
+function xpress_the_title($show = true)
 {
 	$output = '<div class ="xpress-post-header">' . "\n";
@@ -86,5 +86,5 @@
 }
 	
-function xpress_credit($show = false)
+function xpress_credit($show = true)
 {
 	global $wp_version , $xoops_config;
@@ -111,5 +111,5 @@
 }
 
-function xpress_convert_time($show = false)
+function xpress_convert_time($show = true)
 {
 	$ret =  timer_stop(0) .'sec. ';
@@ -498,5 +498,5 @@
 }
 
-function xpress_pings_list($show = false){
+function xpress_pings_list($show = true){
 	
 	$trackbacks = xpress_get_pings();
@@ -547,9 +547,9 @@
 	/** @todo Use API instead of SELECTs. */
 	if ( $user_ID) {
-		$trackbacks = $wpdb->get_results(sprintf("SELECT * FROM $wpdb->comments WHERE comment_post_ID = %d AND (comment_approved = '1' OR ( user_id = %d AND comment_approved = '0' ) ) AND ( comment_type = 'trackback' OR comment_type = 'pingback' ) ORDER BY comment_date", $post->ID, $user_ID));
+		$trackbacks = $wpdb->get_results(sprintf("SELECT * , UNIX_TIMESTAMP(comment_date) AS comment_timestamp ,UNIX_TIMESTAMP(comment_date_gmt) AS comment_timestamp_gmt FROM $wpdb->comments WHERE comment_post_ID = %d AND (comment_approved = '1' OR ( user_id = %d AND comment_approved = '0' ) ) AND ( comment_type = 'trackback' OR comment_type = 'pingback' ) ORDER BY comment_date", $post->ID, $user_ID));
 	} else if ( empty($trackback_author) ) {
-		$trackbacks = $wpdb->get_results(sprintf("SELECT * FROM $wpdb->comments WHERE comment_post_ID = %d AND comment_approved = '1' AND ( comment_type = 'trackback' OR comment_type = 'pingback' ) ORDER BY comment_date", $post->ID));
-	} else {
-		$trackbacks = $wpdb->get_results(sprintf("SELECT * FROM $wpdb->comments WHERE comment_post_ID = %d AND ( comment_approved = '1' OR ( comment_author = %s AND comment_author_email = %s AND comment_approved = '0' ) ) AND ( comment_type = 'trackback' OR comment_type = 'pingback' ) ORDER BY comment_date", $post->ID, $trackback_author, $trackback_author_email));
+		$trackbacks = $wpdb->get_results(sprintf("SELECT * , UNIX_TIMESTAMP(comment_date) AS comment_timestamp ,UNIX_TIMESTAMP(comment_date_gmt) AS comment_timestamp_gmt FROM $wpdb->comments WHERE comment_post_ID = %d AND comment_approved = '1' AND ( comment_type = 'trackback' OR comment_type = 'pingback' ) ORDER BY comment_date", $post->ID));
+	} else {
+		$trackbacks = $wpdb->get_results(sprintf("SELECT * , UNIX_TIMESTAMP(comment_date) AS comment_timestamp ,UNIX_TIMESTAMP(comment_date_gmt) AS comment_timestamp_gmt FROM $wpdb->comments WHERE comment_post_ID = %d AND ( comment_approved = '1' OR ( comment_author = %s AND comment_author_email = %s AND comment_approved = '0' ) ) AND ( comment_type = 'trackback' OR comment_type = 'pingback' ) ORDER BY comment_date", $post->ID, $trackback_author, $trackback_author_email));
 	}
 
@@ -573,6 +573,6 @@
 				'title' => $title ,
 				'content' => $content ,
-				'date'		=> $trackback->comment_date ,
-				'date_gmt'		=> $trackback->comment_date_gmt ,
+				'date'		=> $trackback->comment_timestamp ,
+				'date_gmt'		=> $trackback->comment_timestamp_gmt ,
 				'agent'		=> $trackback->comment_agent ,
 				'type'		=> $trackback->comment_type ,
