We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3c1697f + 8179201 commit 0d43afeCopy full SHA for 0d43afe
1 file changed
class/FormTag.php
@@ -55,7 +55,9 @@ public function __construct($name, int $size, $maxlength, $value = null, $catid
55
$tags = $tagHandler->getByItem($value, $modid, $catid);
56
if ($tags) {
57
$value = \htmlspecialchars(\implode(', ', $tags), \ENT_QUOTES | \ENT_HTML5);
58
- }
+ } else {
59
+ $value = '';
60
+ }
61
}
62
$caption = \_MD_TAG_TAGS;
63
parent::__construct($caption, $name, $size, $maxlength, $value);
0 commit comments