Changeset 21146
- Timestamp:
- 06/26/2012 09:26:42 PM (13 years ago)
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.3/wp-includes/functions.php
r21144 r21146 2630 2630 * 2631 2631 * @since 2.0.4 2632 * @deprecated 3. 4.12632 * @deprecated 3.3.3 2633 2633 * @deprecated Use wp_nonce_ays() 2634 2634 * @see wp_nonce_ays() … … 2638 2638 */ 2639 2639 function wp_explain_nonce( $action ) { 2640 _deprecated_function( __FUNCTION__, '3. 4', 'wp_nonce_ays()' );2640 _deprecated_function( __FUNCTION__, '3.3.3', 'wp_nonce_ays()' ); 2641 2641 return __( 'Are you sure you want to do this?' ); 2642 2642 } -
branches/3.4/wp-includes/functions.php
r21142 r21146 1836 1836 * Retrieve nonce action "Are you sure" message. 1837 1837 * 1838 * Deprecated in 3.4.1 and 3.5.0. Backported to 3.3.3. 1839 * 1838 1840 * @since 2.0.4 1839 1841 * @deprecated 3.4.1 … … 1845 1847 */ 1846 1848 function wp_explain_nonce( $action ) { 1847 _deprecated_function( __FUNCTION__, '3.4 ', 'wp_nonce_ays()' );1849 _deprecated_function( __FUNCTION__, '3.4.1', 'wp_nonce_ays()' ); 1848 1850 return __( 'Are you sure you want to do this?' ); 1849 1851 } -
trunk/wp-includes/deprecated.php
r21133 r21146 3161 3161 * Retrieve nonce action "Are you sure" message. 3162 3162 * 3163 * Deprecated in 3.4.1 and 3.5.0. Backported to 3.3.3. 3164 * 3163 3165 * @since 2.0.4 3164 * @deprecated 3. 5.03166 * @deprecated 3.4.1 3165 3167 * @deprecated Use wp_nonce_ays() 3166 3168 * @see wp_nonce_ays() … … 3170 3172 */ 3171 3173 function wp_explain_nonce( $action ) { 3172 _deprecated_function( __FUNCTION__, '3.4 ', 'wp_nonce_ays()' );3174 _deprecated_function( __FUNCTION__, '3.4.1', 'wp_nonce_ays()' ); 3173 3175 return __( 'Are you sure you want to do this?' ); 3174 3176 }
Note: See TracChangeset
for help on using the changeset viewer.