aboutsummaryrefslogtreecommitdiffstats
path: root/admin/include/functions.php
diff options
context:
space:
mode:
Diffstat (limited to 'admin/include/functions.php')
-rw-r--r--admin/include/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/include/functions.php b/admin/include/functions.php
index 46460a29a..957ef086e 100644
--- a/admin/include/functions.php
+++ b/admin/include/functions.php
@@ -1253,7 +1253,7 @@ function create_virtual_category($category_name, $parent_id=null, $options=array
// any description for this album?
if (isset($options['comment']))
{
- $insert['comment'] = strip_tags($options['comment']);
+ $insert['comment'] = $conf['allow_html_descriptions'] ? $options['comment'] : strip_tags($options['comment']);
}
if (!empty($parent_id) and is_numeric($parent_id))