Make WordPress Core

Changeset 4641


Ignore:
Timestamp:
12/11/2006 09:24:02 PM (19 years ago)
Author:
markjaquith
Message:

_() => () typo fix. props tai. fixes #1540

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.0/wp-includes/template-functions-general.php

    r4636 r4641  
    337337                $url    = get_month_link($arcresult->year,  $arcresult->month);
    338338                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);
    340340                    $after = ' ('.$arcresult->posts.')' . $afterafter;
    341341                } 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);
    343343                }
    344344                echo get_archives_link($url, $text, $format, $before, $after);
Note: See TracChangeset for help on using the changeset viewer.