- bug 350 fixed : must not use htmlentities() on category comment

git-svn-id: http://piwigo.org/svn/branches/branch-1_6@1269 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
chrisaga
2006-04-25 19:47:04 +00:00
parent 94fd47c416
commit 79accc0355
+1 -1
View File
@@ -161,7 +161,7 @@ SELECT id, path, tn_ext
),
'NAME' => htmlentities($category['name'],ENT_QUOTES),
'CAPTION_NB_IMAGES' => (($category['nb_images'] == 0) ? '' : sprintf("%d ".l10n('pictures'), $category['nb_images'])),
'DESCRIPTION' => htmlentities(@$category['comment'],ENT_QUOTES),
'DESCRIPTION' => @$category['comment'],ENT_QUOTES,
)
);
}