Ignore:
Timestamp:
Apr 29, 2006, 12:29:32 PM (18 years ago)
Author:
chrisaga
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/functions_html.inc.php

    r1288 r1290  
    451451      $menu.= ' rel="up"';
    452452    }
    453     $menu.= '>'.htmlentities($category['name'],ENT_QUOTES).'</a>';
     453    $menu.= '>'.$category['name'].'</a>';
    454454
    455455    if ($category['nb_images'] > 0)
     
    551551    $output.=
    552552      ' />'
    553       .' '. htmlentities($tag['name'],ENT_QUOTES)
     553      .' '. $tag['name']
    554554      .'</label>'
    555555      .'</li>'
Note: See TracChangeset for help on using the changeset viewer.