Changeset 52206 for trunk/src/wp-includes/wp-db.php
- Timestamp:
- 11/18/2021 02:35:22 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/wp-db.php
r52195 r52206 1396 1396 // If args were passed as an array (as in vsprintf), move them up. 1397 1397 $passed_as_array = false; 1398 if ( is _array( $args[0] ) && count( $args ) === 1) {1398 if ( isset( $args[0] ) && is_array( $args[0] ) && 1 === count( $args ) ) { 1399 1399 $passed_as_array = true; 1400 1400 $args = $args[0];
Note: See TracChangeset
for help on using the changeset viewer.