Changeset 45639 for trunk/src/wp-includes/wp-db.php
- Timestamp:
- 07/15/2019 06:24:08 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/wp-db.php
r45635 r45639 3114 3114 if ( ! empty( $value['db'] ) ) { 3115 3115 // We're going to need to truncate by characters or bytes, depending on the length value we have. 3116 if ( 'byte' === $value['length']['type'] ) {3116 if ( isset( $value['length']['type'] ) && 'byte' === $value['length']['type'] ) { 3117 3117 // Using binary causes LEFT() to truncate by bytes. 3118 3118 $charset = 'binary';
Note: See TracChangeset
for help on using the changeset viewer.