Changeset 9239 for trunk/wp-includes/post.php
- Timestamp:
- 10/17/2008 10:55:30 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/post.php
r9177 r9239 2057 2057 2058 2058 $key = md5( serialize( $r ) ); 2059 if ( $cache = wp_cache_get( 'get_pages', 'posts' ) ) 2060 if ( isset( $cache[ $key ] ) ) 2061 return apply_filters('get_pages', $cache[ $key ], $r ); 2059 if ( $cache = wp_cache_get( 'get_pages', 'posts' ) ) { 2060 if ( isset( $cache[ $key ] ) ) { 2061 $pages = apply_filters('get_pages', $cache[ $key ], $r ); 2062 return $pages; 2063 } 2064 } 2062 2065 2063 2066 $inclusions = '';
Note: See TracChangeset
for help on using the changeset viewer.