diff options
author | chrisaga <chrisaga@piwigo.org> | 2006-04-22 15:25:59 +0000 |
---|---|---|
committer | chrisaga <chrisaga@piwigo.org> | 2006-04-22 15:25:59 +0000 |
commit | 456b2bda5a2c931646d537ca3202b25c78c14e16 (patch) | |
tree | ea87ae046347496096a7752f57ac1c1f71311dc8 /include/category_subcats.inc.php | |
parent | 5ee3924189668f7deee4c0e69dc9ed8c438e383c (diff) |
- improve : add some htmlentities() to clean category names and descripion. Still more to do.
git-svn-id: http://piwigo.org/svn/trunk@1259 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/category_subcats.inc.php')
-rw-r--r-- | include/category_subcats.inc.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/category_subcats.inc.php b/include/category_subcats.inc.php index 1fc6b2ac4..7c2f2bac0 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' => $category['name'], + 'ALT' => htmlentities($category['name'],ENT_QUOTES), 'TITLE' => $lang['hint_category'], 'ICON' => get_icon(@$category['date_last']), @@ -159,9 +159,9 @@ SELECT id, path, tn_ext 'cat_name' => $category['name'], ) ), - 'NAME' => $category['name'], + 'NAME' => htmlentities($category['name'],ENT_QUOTES), 'CAPTION_NB_IMAGES' => (($category['nb_images'] == 0) ? '' : sprintf("%d ".l10n('pictures'), $category['nb_images'])), - 'DESCRIPTION' => @$category['comment'], + 'DESCRIPTION' => htmlentities(@$category['comment'],ENT_QUOTES), ) ); } @@ -212,4 +212,4 @@ SELECT id, path, tn_ext } } } -?>
\ No newline at end of file +?> |