diff --git a/pandora_console/include/functions_tags.php b/pandora_console/include/functions_tags.php index 247e31bd1c..64fe13e2dc 100644 --- a/pandora_console/include/functions_tags.php +++ b/pandora_console/include/functions_tags.php @@ -705,7 +705,7 @@ function tags_get_tags_formatted($tags_array, $get_url=true) $tags = []; foreach ($tags_array as $t) { $tag_url = explode(' ', trim($t)); - $tag = $tag_url[0]; + $tag = io_safe_output($tag_url[0]); if (isset($tag_url[1]) && $tag_url[1] != '' && $get_url) { $title = $tag_url[1]; // $link = ''.html_print_image('images/zoom.png',true, array('alt' => $title, 'title' => $title)).'';