Make WordPress Core

Ticket #33561: option.php.patch

File option.php.patch, 557 bytes (added by deconf, 9 years ago)

Revert to old check

  • option.php

     
    629629                        if ( !isset( $alloptions[$transient_option] ) ) {
    630630                                $transient_timeout = '_transient_timeout_' . $transient;
    631631                                $timeout = get_option( $transient_timeout );
    632                                 if ( false !== $timeout && $timeout < time() ) {
     632                                if ( get_option( $transient_timeout ) < time() ) {
    633633                                        delete_option( $transient_option  );
    634634                                        delete_option( $transient_timeout );
    635635                                        $value = false;