Make WordPress Core

Ticket #16441: 16441.diff

File 16441.diff, 783 bytes (added by solarissmoke, 14 years ago)
  • wp-content/themes/twentyten/archive.php

     
    3232<?php if ( is_day() ) : ?>
    3333                                <?php printf( __( 'Daily Archives: <span>%s</span>', 'twentyten' ), get_the_date() ); ?>
    3434<?php elseif ( is_month() ) : ?>
    35                                 <?php printf( __( 'Monthly Archives: <span>%s</span>', 'twentyten' ), get_the_date( 'F Y' ) ); ?>
     35                                <?php printf( __( 'Monthly Archives: <span>%s</span>', 'twentyten' ), get_the_date( 'F Y', 'twentyten' ) ); ?>
    3636<?php elseif ( is_year() ) : ?>
    3737                                <?php printf( __( 'Yearly Archives: <span>%s</span>', 'twentyten' ), get_the_date( 'Y' ) ); ?>
    3838<?php else : ?>