Typo in get_calendar

git-svn-id: https://develop.svn.wordpress.org/trunk@4523 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg 2006-11-23 18:31:27 +00:00
parent 0fd7672651
commit 44cfe9ceda
1 changed files with 1 additions and 1 deletions

View File

@ -425,7 +425,7 @@ function get_calendar($initial = true) {
$key = md5( $m . $monthnum . $year );
if ( $cache = wp_cache_get( 'get_calendar', 'calendar' ) ) {
if ( isset( $cache[ $key ] ) ) {
echo $cache;
echo $cache[ $key ];
return;
}
}