Changeset 1003

Show
Ignore:
Timestamp:
03/25/04 02:39:16 (4 years ago)
Author:
michelvaldrighi
Message:

now storing trackback times as localtime+gmt

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-trackback.php

    r984 r1003  
    5353    $user_domain = gethostbyaddr($user_ip); 
    5454    $time_difference = get_settings('time_difference'); 
    55     $now = gmdate('Y-m-d H:i:s'); 
     55    $now = current_time('mysql'); 
     56    $now_gmt = current_time('mysql', 1); 
    5657 
    5758    $comment = convert_chars($comment); 
     
    7475 
    7576    $result = $wpdb->query("INSERT INTO $tablecomments  
    76     (comment_post_ID, comment_author, comment_author_email, comment_author_url, comment_author_IP, comment_date, comment_content, comment_approved) 
     77    (comment_post_ID, comment_author, comment_author_email, comment_author_url, comment_author_IP, comment_date, comment_date_gmt, comment_content, comment_approved) 
    7778    VALUES  
    78     ('$comment_post_ID', '$author', '$email', '$tb_url', '$user_ip', '$now', '$comment', '$approved') 
     79    ('$comment_post_ID', '$author', '$email', '$tb_url', '$user_ip', '$now', '$now_gmt', '$comment', '$approved') 
    7980    "); 
    8081