mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-06-02 04:15:05 +02:00
- bug fixed : search on accentuated characters is possible
git-svn-id: http://piwigo.org/svn/trunk@715 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -410,7 +410,8 @@ function initialize_category( $calling_page = 'category' )
|
||||
$tokens = explode(',', $tokens[0]);
|
||||
foreach ($tokens as $token)
|
||||
{
|
||||
array_push($search['fields'][$field_name]['words'], $token);
|
||||
array_push($search['fields'][$field_name]['words'],
|
||||
htmlentities($token));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user