Make WordPress Core


Ignore:
Timestamp:
12/10/2006 12:23:10 AM (20 years ago)
Author:
markjaquith
Message:

Revert overzealous i18n from [4545]. Props nbachiyski. fixes #3438

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/general-template.php

    r4622 r4636  
    365365            foreach ( $arcresults as $arcresult ) {
    366366                $url    = get_day_link($arcresult->year, $arcresult->month, $arcresult->dayofmonth);
    367                 $date = sprintf(__('%1$d-%2$02d-%3$02d 00:00:00'), $arcresult->year, $arcresult->month, $arcresult->dayofmonth);
     367                $date = sprintf('%1$d-%2$02d-%3$02d 00:00:00', $arcresult->year, $arcresult->month, $arcresult->dayofmonth);
    368368                $text = mysql2date($archive_day_date_format, $date);
    369369                if ($show_post_count)
     
    385385                        $arc_week_start = date_i18n($archive_week_start_date_format, $arc_week['start']);
    386386                        $arc_week_end = date_i18n($archive_week_end_date_format, $arc_week['end']);
    387                         $url  = sprintf(__('%1$s/%2$s%3$sm%4$s%5$s%6$sw%7$s%8$d'), get_option('home'), '', '?', '=', $arc_year, '&', '=', $arcresult->week);
     387                        $url  = sprintf('%1$s/%2$s%3$sm%4$s%5$s%6$sw%7$s%8$d', get_option('home'), '', '?', '=', $arc_year, '&', '=', $arcresult->week);
    388388                        $text = $arc_week_start . $archive_week_separator . $arc_week_end;
    389389                        if ($show_post_count)
Note: See TracChangeset for help on using the changeset viewer.