* can search for polish Ł with latin L in sqlite

This commit is contained in:
maxpozdeev 2023-08-19 18:28:25 +03:00
parent aeb732b446
commit 5325274a91

View file

@ -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);