merge r11512 form trunk

bug:2361 fixed : remove html tags in categories drop-down lists 

git-svn-id: http://piwigo.org/svn/branches/2.2@11513 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
mistic100
2011-06-26 10:03:48 +00:00
parent 6416029da6
commit f14d7f54b1
+7 -3
View File
@@ -317,9 +317,13 @@ function display_select_categories($categories,
}
if ($fullname)
{
$option = get_cat_display_name_cache($category['uppercats'],
null,
false);
$option = strip_tags(
get_cat_display_name_cache(
$category['uppercats'],
null,
false
)
);
}
else
{