Changeset 14183 for trunk/wp-includes/general-template.php
- Timestamp:
- 04/21/2010 09:35:39 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/general-template.php
r14075 r14183 1062 1062 if ( $cache = wp_cache_get( 'get_calendar', 'calendar' ) ) { 1063 1063 if ( is_array($cache) && isset( $cache[ $key ] ) ) { 1064 if ( $echo ) 1064 if ( $echo ) { 1065 1065 echo apply_filters( 'get_calendar', $cache[$key] ); 1066 else 1066 return; 1067 } else { 1067 1068 return apply_filters( 'get_calendar', $cache[$key] ); 1069 } 1068 1070 } 1069 1071 }
Note: See TracChangeset
for help on using the changeset viewer.