mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-08-09 04:28:09 -05:00
Merge pull request #808 from pkoziol/issue-798
Fix search that worked only for lowercase queries
This commit is contained in:
@@ -236,7 +236,7 @@ class Search implements SearchInterface
|
||||
return false;
|
||||
}
|
||||
foreach ($needle as $what) {
|
||||
if (strpos($haystack, $what) !== false) {
|
||||
if (stripos($haystack, $what) !== false) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user