Make WordPress Core


Ignore:
Timestamp:
05/14/2009 02:00:32 AM (16 years ago)
Author:
ryan
Message:

Don't localize dates where not appropriate. Props Denis-de-Bernardy, hakre. fixes #9730

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/query.php

    r11259 r11323  
    26612661    $authordata = get_userdata($post->post_author);
    26622662
    2663     $day = mysql2date('d.m.y', $post->post_date);
    2664     $currentmonth = mysql2date('m', $post->post_date);
     2663    $day = mysql2date('d.m.y', $post->post_date, false);
     2664    $currentmonth = mysql2date('m', $post->post_date, false);
    26652665    $numpages = 1;
    26662666    $page = get_query_var('page');
Note: See TracChangeset for help on using the changeset viewer.