Changeset 57239 for trunk/src/wp-includes/class-wpdb.php
- Timestamp:
- 01/03/2024 09:57:32 PM (11 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wpdb.php
r57089 r57239 155 155 156 156 /** 157 * Cached column info, for sanitychecking data before inserting.157 * Cached column info, for confidence checking data before inserting. 158 158 * 159 159 * @since 4.2.0 … … 173 173 174 174 /** 175 * Whether text fields in the current query need to be sanitychecked.175 * Whether text fields in the current query need to be confidence checked. 176 176 * 177 177 * @since 4.2.0 … … 1928 1928 $this->result = null; 1929 1929 1930 // Sanitycheck before using the handle.1930 // Confidence check before using the handle. 1931 1931 if ( empty( $this->dbh ) || ! ( $this->dbh instanceof mysqli ) ) { 1932 1932 return; … … 3517 3517 } 3518 3518 3519 // If any of the columns don't have one of these collations, it needs more sanitychecking.3519 // If any of the columns don't have one of these collations, it needs more confidence checking. 3520 3520 $safe_collations = array( 3521 3521 'utf8_bin',
Note: See TracChangeset
for help on using the changeset viewer.