From 44cfe9ceda5bcc11f3eae21a7e6f9db0a143185d Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Thu, 23 Nov 2006 18:31:27 +0000 Subject: [PATCH] Typo in get_calendar git-svn-id: https://develop.svn.wordpress.org/trunk@4523 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/general-template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php index 052d047376..f4799583ed 100644 --- a/wp-includes/general-template.php +++ b/wp-includes/general-template.php @@ -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; } }