Make WordPress Core

Ticket #32848: 32848.diff

File 32848.diff, 510 bytes (added by MikeNGarrett, 9 years ago)

Patch #1

  • src/wp-includes/option.php

     
    326326
    327327        if ( ! defined( 'WP_INSTALLING' ) ) {
    328328                $alloptions = wp_load_alloptions();
    329                 if ( isset( $alloptions[$option] ) ) {
     329                if ( array_key_exists( $option, $alloptions ) ) {
    330330                        $alloptions[ $option ] = $serialized_value;
    331331                        wp_cache_set( 'alloptions', $alloptions, 'options' );
    332332                } else {