Changeset 23319 for trunk/wp-includes/comment.php
- Timestamp:
- 01/22/2013 03:46:16 PM (13 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/comment.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/comment.php
r23265 r23319 251 251 $key = md5( serialize( compact(array_keys($defaults)) ) ); 252 252 $last_changed = wp_cache_get( 'last_changed', 'comment' ); 253 if ( ! $last_changed ) 254 $last_changed = wp_cache_set( 'last_changed', 1, 'comment' ); 253 if ( ! $last_changed ) { 254 wp_cache_set( 'last_changed', 1, 'comment' ); 255 $last_changed = 1; 256 } 255 257 $cache_key = "get_comments:$key:$last_changed"; 256 258
Note: See TracChangeset
for help on using the changeset viewer.