Changeset 49474
- Timestamp:
- 11/02/2020 06:02:11 PM (5 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 2 edited
-
class-wp-query.php (modified) (1 diff)
-
functions.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-query.php
r49193 r49474 792 792 } 793 793 794 // Fairly insaneupper bound for search string lengths.794 // Fairly large, potentially too large, upper bound for search string lengths. 795 795 if ( ! is_scalar( $qv['s'] ) || ( ! empty( $qv['s'] ) && strlen( $qv['s'] ) > 1600 ) ) { 796 796 $qv['s'] = ''; -
trunk/src/wp-includes/functions.php
r49452 r49474 1749 1749 $wp_tables = $wpdb->tables(); 1750 1750 foreach ( $wp_tables as $table ) { 1751 // The existence of custom user tables shouldn't suggest an insane state or prevent a clean installation.1751 // The existence of custom user tables shouldn't suggest an unwise state or prevent a clean installation. 1752 1752 if ( defined( 'CUSTOM_USER_TABLE' ) && CUSTOM_USER_TABLE == $table ) { 1753 1753 continue; … … 1765 1765 } 1766 1766 1767 // One or more tables exist. We are insane.1767 // One or more tables exist. This is not good. 1768 1768 1769 1769 wp_load_translations_early();
Note: See TracChangeset
for help on using the changeset viewer.