Skip to content

Commit

Permalink
Update system/Database/BaseBuilder.php
Browse files Browse the repository at this point in the history
Co-authored-by: Pooya Parsa <pooya_parsa_dadashi@yahoo.com>
  • Loading branch information
michalsn and datamweb authored Oct 26, 2024
1 parent c36e0d9 commit e3e3c4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/Database/BaseBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -1151,7 +1151,7 @@ protected function _like($field, string $match = '', string $type = 'AND ', stri

foreach ($keyValue as $k => $v) {
if ($insensitiveSearch === true) {
$v = mb_strtolower($v);
$v = mb_strtolower($v, 'UTF-8');
}

$prefix = empty($this->{$clause}) ? $this->groupGetType('') : $this->groupGetType($type);
Expand Down

0 comments on commit e3e3c4f

Please sign in to comment.