Changeset 10665
- Timestamp:
- 02/27/2009 07:21:41 PM (17 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r10626 r10665 670 670 if ( !isset( $alloptions[$transient_option] ) ) { 671 671 $transient_timeout = '_transient_timeout_' . $wpdb->escape($transient); 672 if ( get_option($transient_timeout) >time() ) {672 if ( get_option($transient_timeout) < time() ) { 673 673 delete_option($transient_option); 674 674 delete_option($transient_timeout);
Note: See TracChangeset
for help on using the changeset viewer.