Changeset 56817 for trunk/src/wp-includes/option.php
- Timestamp:
- 10/10/2023 12:50:19 PM (20 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/option.php
r56814 r56817 2904 2904 } 2905 2905 2906 $pos = array_search( $option_name, (array) $new_allowed_options[ $option_group ], true ); 2906 $pos = false; 2907 if ( isset( $new_allowed_options[ $option_group ] ) ) { 2908 $pos = array_search( $option_name, (array) $new_allowed_options[ $option_group ], true ); 2909 } 2907 2910 2908 2911 if ( false !== $pos ) {
Note: See TracChangeset
for help on using the changeset viewer.