bug 3020 and bug 3021 fixed: additionnal checks in search inputs

git-svn-id: http://piwigo.org/svn/trunk@26825 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
plegall 2014-01-17 12:50:14 +00:00
commit 7f39d5b695
3 changed files with 11 additions and 2 deletions

View file

@ -107,7 +107,7 @@ if (isset($search['fields']['author']))
'search_words',
l10n(
'author(s) : %s',
join(', ', $search['fields']['author']['words'])
join(', ', array_map('strip_tags', $search['fields']['author']['words']))
)
);
}