diff options
Diffstat (limited to '')
-rw-r--r-- | include/category_subcats.inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/category_subcats.inc.php b/include/category_subcats.inc.php index 578cabde6..60a7c4225 100644 --- a/include/category_subcats.inc.php +++ b/include/category_subcats.inc.php @@ -149,7 +149,7 @@ SELECT id, path, tn_ext 'categories.category', array( 'SRC' => $thumbnail_src_of[ $category['picture'] ], - 'ALT' => htmlentities($category['name'],ENT_QUOTES), + 'ALT' => $category['name'], 'TITLE' => $lang['hint_category'], 'ICON' => get_icon(@$category['date_last']), @@ -159,7 +159,7 @@ SELECT id, path, tn_ext 'cat_name' => $category['name'], ) ), - 'NAME' => htmlentities($category['name'],ENT_QUOTES), + 'NAME' => $category['name'], 'CAPTION_NB_IMAGES' => (($category['nb_images'] == 0) ? '' : sprintf("%d ".l10n('pictures'), $category['nb_images'])), 'DESCRIPTION' => @$category['comment'], ) |