Added search by translated string to the translation area.

This commit is contained in:
2021-10-18 22:12:19 +02:00
parent 5651d3dca8
commit ab471e3ccb
18 changed files with 313 additions and 35 deletions

View File

@ -387,7 +387,7 @@ class ComponentbuilderModelLanguage_translations extends JModelList
else
{
$search = $db->quote('%' . $db->escape($search) . '%');
$query->where('(a.source LIKE '.$search.')');
$query->where('(a.source LIKE '.$search.' OR a.translation LIKE '.$search.')');
}
}