Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #18210, comment 3


Ignore:
Timestamp:
07/22/2011 09:26:26 AM (13 years ago)
Author:
xknown
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #18210, comment 3

    initial v1  
    11Yes, it is due to the collation used by default in WP (utf8_general_ci), which is case insensitive. There are more cases than case insensivity, for example the following query returns true:
    22{{{
    3 select ('_allday' COLLATE utf8_general_ci) = ('_âlldây        ' COLLATE utf8_general_ci)
     3select ('_allday' COLLATE utf8_general_ci) = ('_Älldây        ' COLLATE utf8_general_ci)
    44}}}
    55