DragonByte Tech
Well-known member
If you previously wrote your own Finder extensions, or used Finder expressions, to sort by titles like so:
The new code you should be using is
This is to improve compatibility with mb4 charsets (the one with the emoji). Plus, it looks better
Fillip
$expression = $this->expression('CONVERT (%s USING utf8)', 'title');
or $expression = $this->expression('CONVERT (%s USING utf8)', 'MasterTitle.phrase_text');
The new code you should be using is
$expression = $this->columnUtf8('title');
and $expression = $this->columnUtf8('MasterTitle.phrase_text');
respectively.This is to improve compatibility with mb4 charsets (the one with the emoji). Plus, it looks better
Fillip