XF 2.0 PSA: Finder changes in 2.0.2+

DragonByte Tech

Well-known member
If you previously wrote your own Finder extensions, or used Finder expressions, to sort by titles like so: $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 :P


Fillip
 
Back
Top Bottom