Wrong line

git-svn-id: https://develop.svn.wordpress.org/trunk@2344 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg 2005-02-15 00:50:23 +00:00
parent 5561bc063c
commit 28fb881767
1 changed files with 2 additions and 2 deletions

View File

@ -221,10 +221,10 @@ function single_month_title($prefix = '', $display = true ) {
global $m, $monthnum, $month, $year;
if(!empty($monthnum) && !empty($year)) {
$my_year = $year;
$my_month = $month[$monthnum];
$my_month = $month[str_pad($monthnum, 2, '0', STR_PAD_LEFT)];
} elseif(!empty($m)) {
$my_year = substr($m, 0, 4);
$my_month = $month[str_pad($monthnum, 2, '0', STR_PAD_LEFT)];
$my_month = $month[substr($m, 4, 2)];
}
if (!empty($my_month) && $display) {