Make WordPress Core

Changeset 21146


Ignore:
Timestamp:
06/26/2012 09:26:42 PM (13 years ago)
Author:
nacin
Message:

Update the version numbers for wp_explain_nonce() deprecation. see #21076.

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3/wp-includes/functions.php

    r21144 r21146  
    26302630 *
    26312631 * @since 2.0.4
    2632  * @deprecated 3.4.1
     2632 * @deprecated 3.3.3
    26332633 * @deprecated Use wp_nonce_ays()
    26342634 * @see wp_nonce_ays()
     
    26382638 */
    26392639function wp_explain_nonce( $action ) {
    2640     _deprecated_function( __FUNCTION__, '3.4', 'wp_nonce_ays()' );
     2640    _deprecated_function( __FUNCTION__, '3.3.3', 'wp_nonce_ays()' );
    26412641    return __( 'Are you sure you want to do this?' );
    26422642}
  • branches/3.4/wp-includes/functions.php

    r21142 r21146  
    18361836 * Retrieve nonce action "Are you sure" message.
    18371837 *
     1838 * Deprecated in 3.4.1 and 3.5.0. Backported to 3.3.3.
     1839 *
    18381840 * @since 2.0.4
    18391841 * @deprecated 3.4.1
     
    18451847 */
    18461848function wp_explain_nonce( $action ) {
    1847     _deprecated_function( __FUNCTION__, '3.4', 'wp_nonce_ays()' );
     1849    _deprecated_function( __FUNCTION__, '3.4.1', 'wp_nonce_ays()' );
    18481850    return __( 'Are you sure you want to do this?' );
    18491851}
  • trunk/wp-includes/deprecated.php

    r21133 r21146  
    31613161 * Retrieve nonce action "Are you sure" message.
    31623162 *
     3163 * Deprecated in 3.4.1 and 3.5.0. Backported to 3.3.3.
     3164 *
    31633165 * @since 2.0.4
    3164  * @deprecated 3.5.0
     3166 * @deprecated 3.4.1
    31653167 * @deprecated Use wp_nonce_ays()
    31663168 * @see wp_nonce_ays()
     
    31703172 */
    31713173function wp_explain_nonce( $action ) {
    3172     _deprecated_function( __FUNCTION__, '3.4', 'wp_nonce_ays()' );
     3174    _deprecated_function( __FUNCTION__, '3.4.1', 'wp_nonce_ays()' );
    31733175    return __( 'Are you sure you want to do this?' );
    31743176}
Note: See TracChangeset for help on using the changeset viewer.