Changeset 23319 for trunk/wp-includes/post.php
- Timestamp:
- 01/22/2013 03:46:16 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/post.php
r23311 r23319 3653 3653 $key = md5( serialize( compact(array_keys($defaults)) ) ); 3654 3654 $last_changed = wp_cache_get( 'last_changed', 'posts' ); 3655 if ( ! $last_changed ) 3656 $last_changed = wp_cache_set( 'last_changed', 1, 'posts' ); 3655 if ( ! $last_changed ) { 3656 wp_cache_set( 'last_changed', 1, 'posts' ); 3657 $last_changed = 1; 3658 } 3657 3659 3658 3660 $cache_key = "get_pages:$key:$last_changed";
Note: See TracChangeset
for help on using the changeset viewer.