Changeset 53914 for trunk/src/wp-includes/option.php
- Timestamp:
- 08/20/2022 12:25:13 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/option.php
r53827 r53914 96 96 ); 97 97 98 if ( ! wp_installing() && isset( $deprecated_keys[ $option ]) ) {98 if ( isset( $deprecated_keys[ $option ] ) && ! wp_installing() ) { 99 99 _deprecated_argument( 100 100 __FUNCTION__, … … 402 402 ); 403 403 404 if ( ! wp_installing() && isset( $deprecated_keys[ $option ]) ) {404 if ( isset( $deprecated_keys[ $option ] ) && ! wp_installing() ) { 405 405 _deprecated_argument( 406 406 __FUNCTION__, … … 592 592 ); 593 593 594 if ( ! wp_installing() && isset( $deprecated_keys[ $option ]) ) {594 if ( isset( $deprecated_keys[ $option ] ) && ! wp_installing() ) { 595 595 _deprecated_argument( 596 596 __FUNCTION__,
Note: See TracChangeset
for help on using the changeset viewer.