mirror of
https://github.com/maxpozdeev/mytinytodo.git
synced 2026-03-11 08:55:27 +00:00
* can search for polish Ł with latin L in sqlite
This commit is contained in:
parent
aeb732b446
commit
5325274a91
1 changed files with 1 additions and 0 deletions
|
|
@ -305,6 +305,7 @@ class Database_Sqlite3 extends Database_Abstract
|
|||
'æ' => 'ae', // "U+00e6"
|
||||
'Œ' => 'OE', // "U+0152"
|
||||
'œ' => 'oe', // "U+0153"
|
||||
'Ł' => 'L', 'ł' => 'L' //U+141 and U+142
|
||||
];
|
||||
|
||||
$len = count($chars);
|
||||
|
|
|
|||
Loading…
Reference in a new issue