Ticket #1540: 20xbranchfix.patch
| File 20xbranchfix.patch, 949 bytes (added by , 19 years ago) |
|---|
-
wp-includes/template-functions-general.php
336 336 foreach ( $arcresults as $arcresult ) { 337 337 $url = get_month_link($arcresult->year, $arcresult->month); 338 338 if ( $show_post_count ) { 339 $text = sprintf(_ ('%1$s %2$d'), $month[zeroise($arcresult->month,2)], $arcresult->year);339 $text = sprintf(__('%1$s %2$d'), $month[zeroise($arcresult->month,2)], $arcresult->year); 340 340 $after = ' ('.$arcresult->posts.')' . $afterafter; 341 341 } else { 342 $text = sprintf(_ ('%1$s %2$d'), $month[zeroise($arcresult->month,2)], $arcresult->year);342 $text = sprintf(__('%1$s %2$d'), $month[zeroise($arcresult->month,2)], $arcresult->year); 343 343 } 344 344 echo get_archives_link($url, $text, $format, $before, $after); 345 345 }