Skip to content

Commit

Permalink
Fake commit to bump flame library
Browse files Browse the repository at this point in the history
Signed-off-by: Sam <6567634+sampoyigi@users.noreply.github.com>
  • Loading branch information
sampoyigi committed Mar 15, 2023
1 parent c61abcb commit 1099e13
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/system/classes/LanguageManager.php
Expand Up @@ -141,7 +141,8 @@ public function searchTranslations($translations, $term = null)
if (strlen($term)) {
if (stripos(strtolower(array_get($value, 'source')), $term) !== false
|| stripos(strtolower(array_get($value, 'translation')), $term) !== false
|| stripos(strtolower($key), $term) !== false) {
|| stripos(strtolower($key), $term) !== false
) {
$result[$key] = $value;
}
}
Expand Down

0 comments on commit 1099e13

Please sign in to comment.