Make WordPress Core

Changeset 33311

Timestamp:
07/17/2015 07:09:32 AM (9 years ago)
Author:
pento
Message:

WPDB: ::strip_text_from_query() doesn't pass a length to ::strip_invalid_text(), which was causing queries to fail when they contained characters that needed to be sanity checked by MySQL.

Props dd32, mdawaffe, pento.

Merges [33310] to the 4.2 branch.

Fixes #32279.

Location:
branches/4.2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.2/src/wp-includes/wp-db.php

    r33309 r33311  
    25952595            if ( is_array( $value['length'] ) ) {
    25962596                $length = $value['length']['length'];
     2597
    25972598            } else {
    25982599                $length = false;
     2600
     2601
     2602
     2603
    25992604            }
    26002605
     
    26082613                continue;
    26092614            }
    2610 
    2611             $truncate_by_byte_length = 'byte' === $value['length']['type'];
    26122615
    26132616            $needs_validation = true;
     
    26842687                    }
    26852688
    2686                     $queries[ $col ] = $this->prepare( "CONVERT( LEFT( CONVERT( %s USING $charset ), %.0f ) USING {$this->charset} )", $value['value'], $value['length']['length'] );
     2689                    if ( is_array( $value['length'] ) ) {
     2690                        $queries[ $col ] = $this->prepare( "CONVERT( LEFT( CONVERT( %s USING $charset ), %.0f ) USING {$this->charset} )", $value['value'], $value['length']['length'] );
     2691                    } else if ( 'binary' !== $charset ) {
     2692                        // If we don't have a length, there's no need to convert binary - it will always return the same result.
     2693                        $queries[ $col ] = $this->prepare( "CONVERT( CONVERT( %s USING $charset ) USING {$this->charset} )", $value['value'] );
     2694                    }
    26872695
    26882696                    unset( $data[ $col ]['db'] );
  • branches/4.2/tests/phpunit/tests/db/charset.php

    r33309 r33311  
    214214                'expected' => "\xd8ord\xd0ress",
    215215                'length'   => array( 'type' => 'char', 'length' => 100 ),
     216
     217
     218
     219
     220
     221
     222
     223
     224
     225
     226
     227
     228
     229
     230
    216231            ),
    217232            'cp1251_char_length' => array(
     
    808823        $this->assertEquals( 255, strlen( $stripped ) );
    809824    }
     825
     826
     827
     828
     829
     830
     831
     832
     833
     834
     835
     836
     837
     838
     839
     840
     841
    810842}
Note: See TracChangeset for help on using the changeset viewer.