Make WordPress Core


Ignore:
Timestamp:
02/14/2005 06:48:51 AM (20 years ago)
Author:
saxmatt
Message:

Fix for single_month_title - http://mosquito.wordpress.org/view.php?id=867

File:
1 edited

Legend:

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

    r2321 r2327  
    225225    } elseif(!empty($m)) {
    226226        $my_year = substr($m, 0, 4);
    227         $my_month = $month[substr($m, 4, 2)];
     227        $my_month = $month[str_pad($monthnum, 2, '0', STR_PAD_LEFT)];
    228228    }
    229229
Note: See TracChangeset for help on using the changeset viewer.