Make WordPress Core

Ticket #34337: 34337.patch

File 34337.patch, 604 bytes (added by sebastian.pisula, 9 years ago)
  • wp-includes/option.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    189189                        wp_cache_add( 'alloptions', $alloptions, 'options' );
    190190        }
    191191
    192         return $alloptions;
     192        /**
     193         * Filter all options
     194         *
     195         * @since 4.4.0
     196         *
     197         * @param array $alloptions Options.
     198         */
     199
     200        return apply_filters( 'alloptions', $alloptions );
    193201}
    194202
    195203/**