Changeset 10533
- Timestamp:
- 02/10/2009 06:26:46 AM (17 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r10514 r10533 663 663 664 664 if ( $_wp_using_ext_object_cache ) { 665 returnwp_cache_get($transient, 'transient');665 $value = wp_cache_get($transient, 'transient'); 666 666 } else { 667 $transient = '_transient_' . $wpdb->escape($transient); 668 return get_option($transient); 669 } 667 $transient_option = '_transient_' . $wpdb->escape($transient); 668 $value = get_option($transient_option); 669 } 670 671 return apply_filters('transient_' . $transient, $value); 670 672 } 671 673
Note: See TracChangeset
for help on using the changeset viewer.