Make WordPress Core

Ticket #24686: 24686.4.diff

File 24686.4.diff, 1.0 KB (added by adamsilverstein, 8 years ago)
  • src/wp-includes/option.php

     
    665665        }
    666666
    667667        /**
     668         * Fires before returning a transient.
     669         *
     670         * @since 4.8.0
     671         *
     672         * @param string $transient The name of the transient.
     673         * @param mixed  $value     Transient value.
     674         */
     675        do_action( 'got_transient', $transient, $value );
     676
     677        /**
    668678         * Filters an existing transient's value.
    669679         *
    670680         * The dynamic portion of the hook name, `$transient`, refers to the transient name.
     
    16171627        }
    16181628
    16191629        /**
     1630         * Fires before returning a site transient.
     1631         *
     1632         * @since 4.8.0
     1633         *
     1634         * @param string $transient The name of the transient.
     1635         * @param mixed  $value     Transient value.
     1636         */
     1637        do_action( 'got_site_transient', $transient, $value );
     1638
     1639        /**
    16201640         * Filters the value of an existing site transient.
    16211641         *
    16221642         * The dynamic portion of the hook name, `$transient`, refers to the transient name.