diff options
author | chrisaga <chrisaga@piwigo.org> | 2006-04-29 10:36:49 +0000 |
---|---|---|
committer | chrisaga <chrisaga@piwigo.org> | 2006-04-29 10:36:49 +0000 |
commit | 84326ab9441000f93a8a4435e4ff39580fd04bf2 (patch) | |
tree | 9d1f1aaba8f8f714c7c3c9396f1cca6065d4d3ee /include/category_subcats.inc.php | |
parent | e827e05429469912c450d2a1ee6750fffc82dbde (diff) |
- merge trunk r1289:1290 into branch 1.6 (bug 358 fixed)
git-svn-id: http://piwigo.org/svn/branches/branch-1_6@1291 68402e56-0260-453c-a942-63ccdbb3a9ee
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'], ) |