mirror of
https://github.com/Piwigo/Piwigo.git
synced 2025-04-27 19:59:56 +03:00
bug 358 fixed : Accent are not correctly displayed in category listing
Removed calls to htmlentities() improvement : charset added in HTTP header so browser's automatic encoding works even if httpd is not netto latin1 revert to original l10n() : use of htmlentities() didn't solve bug in IE tooltips git-svn-id: http://piwigo.org/svn/trunk@1290 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
360e21242f
commit
d05caccc31
4 changed files with 6 additions and 15 deletions
|
@ -450,7 +450,7 @@ function get_html_menu_category($categories)
|
|||
{
|
||||
$menu.= ' rel="up"';
|
||||
}
|
||||
$menu.= '>'.htmlentities($category['name'],ENT_QUOTES).'</a>';
|
||||
$menu.= '>'.$category['name'].'</a>';
|
||||
|
||||
if ($category['nb_images'] > 0)
|
||||
{
|
||||
|
@ -550,7 +550,7 @@ function get_html_tag_selection(
|
|||
|
||||
$output.=
|
||||
' />'
|
||||
.' '. htmlentities($tag['name'],ENT_QUOTES)
|
||||
.' '. $tag['name']
|
||||
.'</label>'
|
||||
.'</li>'
|
||||
."\n"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue