mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-14 22:56:19 +01:00
Upgrade: $wpdb->get_col_length()
sanity check: bail on unexpected return value.
Merges [32429] for the 3.7 branch. See #32165. Built from https://develop.svn.wordpress.org/branches/3.7@32435 git-svn-id: http://core.svn.wordpress.org/branches/3.7@32405 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a021bbe537
commit
2b1b2ebaf2
@ -1290,6 +1290,11 @@ function upgrade_379() {
|
||||
|
||||
if ( $wp_current_db_version < 26151 ) {
|
||||
$content_length = $wpdb->get_col_length( $wpdb->comments, 'comment_content' );
|
||||
|
||||
if ( is_wp_error( $content_length ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
if ( false === $content_length ) {
|
||||
$content_length = array(
|
||||
'type' => 'byte',
|
||||
|
Loading…
Reference in New Issue
Block a user