- 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:
plegall
2005-01-20 23:09:28 +00:00
parent 5d7813b9b2
commit 59ab5dec26
+2 -1
View File
@@ -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));
}
}