mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
Merge pull request #2825 from aynsix/PHRAS-2306-port-search-thesaurus-all-language
PHRAS-2306 port to 4.1 search thesaurus term to all language
This commit is contained in:
@@ -1426,12 +1426,7 @@ class ThesaurusXmlHttpController extends Controller
|
||||
|
||||
public function searchTermJson(Request $request)
|
||||
{
|
||||
if (null === $lng = $request->get('lng')) {
|
||||
$data = explode('_', $this->app['locale']);
|
||||
if (count($data) > 0) {
|
||||
$lng = $data[0];
|
||||
}
|
||||
}
|
||||
$lng = $request->get('lng');
|
||||
|
||||
$html = '';
|
||||
$sbid = (int) $request->get('sbid');
|
||||
@@ -1485,7 +1480,10 @@ class ThesaurusXmlHttpController extends Controller
|
||||
$q2 .= ' and starts-with(@k, \'' . \thesaurus::xquery_escape($unicode->remove_indexer_chars($t[1])) . '\')';
|
||||
}
|
||||
|
||||
if($lng != null){
|
||||
$q2 .= ' and @lng=\'' . \thesaurus::xquery_escape($lng) . '\'';
|
||||
}
|
||||
|
||||
$q .= ('//sy[' . $q2 . ']');
|
||||
|
||||
$nodes = $xpath->query($q);
|
||||
|
Reference in New Issue
Block a user