We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6b4f19 commit cc4b673Copy full SHA for cc4b673
inc/field/tagfield.class.php
@@ -73,7 +73,7 @@ public function getRenderedHtml($domain, $canEdit = true): string {
73
if (!$canEdit) {
74
$html .= '<div class="form_field">';
75
$tagNames = [];
76
- if (count($this->value) > 0) {
+ if (is_array($this->value) && count($this->value) > 0) {
77
foreach ($this->value as $tagId) {
78
$tag = new PluginTagTag();
79
if (!$tag->getFromDB($tagId)) {
0 commit comments