Changeset 33110 for trunk/src/wp-includes/option.php
- Timestamp:
- 07/07/2015 04:44:08 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/option.php
r32943 r33110 623 623 if ( !isset( $alloptions[$transient_option] ) ) { 624 624 $transient_timeout = '_transient_timeout_' . $transient; 625 if ( get_option( $transient_timeout ) < time() ) { 625 $timeout = get_option( $transient_timeout ); 626 if ( false !== $timeout && $timeout < time() ) { 626 627 delete_option( $transient_option ); 627 628 delete_option( $transient_timeout );
Note: See TracChangeset
for help on using the changeset viewer.